mirror of
https://github.com/NishiOwO/JWasm.git
synced 2025-04-22 01:04:39 +00:00
18 lines
131 B
NASM
18 lines
131 B
NASM
|
|
;--- macro labels
|
|
|
|
.286
|
|
.model small
|
|
|
|
m1 macro x,y
|
|
% db "&x,&y"
|
|
endm
|
|
|
|
.code
|
|
|
|
m1 1,!
|
|
m1 1,!
|
|
m1 !,,!
|
|
|
|
end
|