mirror of
https://github.com/NishiOwO/JWasm.git
synced 2025-04-22 01:04:39 +00:00
22 lines
327 B
Plaintext
22 lines
327 B
Plaintext
|
|
;--- problem: blank macro argument might
|
|
;--- cause a line concatenation in v2.05.
|
|
|
|
.286
|
|
.model small
|
|
|
|
;--- m1: Masm ok, JWasm currently complains
|
|
|
|
m1 macro a1,a2
|
|
db a1,a2
|
|
if 0 ;jwasm will add this line to the previous one
|
|
endif ;consequently, this endif will cause an error
|
|
endm
|
|
|
|
.code
|
|
|
|
m1 1
|
|
|
|
end
|
|
|