Untitled


SUBMITTED BY: Guest

DATE: Oct. 13, 2013, 5:51 p.m.

FORMAT: Text only

SIZE: 1.0 kB

HITS: 1012

  1. .386p
  2. ifdef ??version
  3. if ??version GT 500H
  4. .mmx
  5. endif
  6. endif
  7. model flat
  8. ifndef ??version
  9. ?debug macro
  10. endm
  11. endif
  12. ?debug S "test.c"
  13. ?debug T "test.c"
  14. _TEXT segment dword public use32 'CODE'
  15. _TEXT ends
  16. _DATA segment dword public use32 'DATA'
  17. _DATA ends
  18. _BSS segment dword public use32 'BSS'
  19. _BSS ends
  20. DGROUP group _BSS,_DATA
  21. _TEXT segment dword public use32 'CODE'
  22. _main proc near
  23. ?live1@0:
  24. ;
  25. ; int main()
  26. ;
  27. push ebp
  28. mov ebp,esp
  29. ;
  30. ; {
  31. ; return 0;
  32. ;
  33. @1:
  34. xor eax,eax
  35. ;
  36. ; }
  37. ;
  38. @3:
  39. @2:
  40. pop ebp
  41. ret
  42. _main endp
  43. _TEXT ends
  44. public _main
  45. ?debug D "test.c" 17229 42518
  46. end

comments powered by Disqus