mirror of
https://github.com/NishiOwO/JWasm.git
synced 2025-04-22 01:04:39 +00:00
22 lines
202 B
Plaintext
22 lines
202 B
Plaintext
|
|
;--- warning too many arguments in macro call
|
|
|
|
.386
|
|
.model flat
|
|
|
|
m1 macro x
|
|
db x
|
|
endm
|
|
|
|
m2 macro x
|
|
exitm <x+1>
|
|
endm
|
|
|
|
.data
|
|
|
|
m1 1,2,3
|
|
db m2(1,2,3)
|
|
db m2(1,2,3), m2(1,2)
|
|
|
|
end
|