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

.386p
; forceres.asm - generate publics to force resolution of symbols we
; don't want to deal with yet.
;
_TEXT SEGMENT DWORD PUBLIC 'CODE'
ASSUME DS:FLAT, ES:FLAT, SS:NOTHING, FS:NOTHING, GS:NOTHING
public __fltused
foo proc near ; make the assembler shut up
__fltused:
int 3
ret
foo endp
_TEXT ends
end