mirror of
https://github.com/NishiOwO/JWasm.git
synced 2025-04-22 01:04:39 +00:00
19 lines
144 B
NASM
19 lines
144 B
NASM
|
|
;--- purge test
|
|
|
|
.386
|
|
.model flat, stdcall
|
|
option casemap:none
|
|
|
|
M1 macro x
|
|
db x
|
|
endm
|
|
|
|
.code
|
|
|
|
M1 0
|
|
purge M1
|
|
M1 1
|
|
|
|
end
|