fork download
  1. global _start ; alec's phone source code, copyright 2010 samsung inc
  2. ; this probably doesnt even execute but...whatever lets flash it anyway
  3.  
  4. section .data
  5. mov dw 0h ; what the fuck does this shit even do?
  6.  
  7. section .text
  8. _start:
  9. mov ebp, 4 ; static stack pointers are a great idea right guys?
  10. mov ebp, 4 ; yep go for it
  11.  
  12. readinput:
  13. lea ebx, [esp + 4] ; grab user input data from stack
  14. cmp ebx, 0 ; see if the user sent any input
  15. jne crash ; we can't handle input so we'll just crash if they did
  16. je readinput ; loop for more input
  17.  
  18. crash:
  19. mov esp, -1 ; invalidate the stack frame
  20. mov ebp, -1
  21. mov eax, 1 ; fuck saving caller registers
  22. jmp troll
  23.  
  24. troll:
  25. imul eax, 2048 ; infinite loop, kthx
  26. jmp troll
  27.  
  28. all_other_functionality:
  29. jmp crash ; yep looks about right
Not running #stdin #stdout 0s 0KB
stdin
Standard input is empty
stdout
Standard output is empty