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.
15 lines
251 B
15 lines
251 B
;
|
|
; This is in assembly because assembly lets you generate arbitrarily named symbols.
|
|
;
|
|
|
|
.386p
|
|
.model flat
|
|
|
|
extern _ExitProcess@4:near
|
|
public __imp__ExitProcess@4
|
|
|
|
CONST segment
|
|
__imp__ExitProcess@4 dd _ExitProcess@4
|
|
CONST ends
|
|
|
|
end
|