mirror of
https://github.com/NishiOwO/JWasm.git
synced 2025-04-22 01:04:39 +00:00
13 lines
132 B
Plaintext
13 lines
132 B
Plaintext
|
|
;--- trigger "nesting level too deep" error
|
|
|
|
.386
|
|
.MODEL small
|
|
|
|
m1 macro arg
|
|
; echo arg
|
|
m1 <arg,x>
|
|
endm
|
|
m1 0
|
|
end
|