Windows NT 4.0 source code leak
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
390 B

4 years ago
  1. .386p
  2. ; forceres.asm - generate publics to force resolution of symbols we
  3. ; don't want to deal with yet.
  4. ;
  5. _TEXT SEGMENT DWORD PUBLIC 'CODE'
  6. ASSUME DS:FLAT, ES:FLAT, SS:NOTHING, FS:NOTHING, GS:NOTHING
  7. public __fltused
  8. foo proc near ; make the assembler shut up
  9. __fltused:
  10. int 3
  11. ret
  12. foo endp
  13. _TEXT ends
  14. end