mirror of https://github.com/yasm/yasm.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
121 B
19 lines
121 B
21 years ago
|
%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
|