mirror of
https://github.com/yasm/yasm
synced 2026-08-26 22:26:05 -04:00
reporting functions that take a parameter for the line to be displayed in addition to the the line used for sorting. This allows the "previously defined" message to use the standard errwarn line resolution functions. The resulting error messages look like gcc output. Reported by: Edouard Gomez <ed.gomez@free.fr> svn path=/trunk/yasm/; revision=1074
18 lines
121 B
NASM
18 lines
121 B
NASM
%macro TESTMAC 0
|
|
label:
|
|
mov ax, 5
|
|
mov dx, 4
|
|
mov cx, 3
|
|
%endmacro
|
|
|
|
db 6
|
|
|
|
db 7
|
|
|
|
TESTMAC
|
|
|
|
db 8
|
|
db 9
|
|
TESTMAC
|
|
db 10
|
|
TESTMAC
|