jwasm/Regress/MACRO2.ASM
2014-06-18 19:16:56 +04:00

22 lines
256 B
NASM

;--- test text macro expansion
;--- text macro contains 2 macro function calls
.286
.model small
.386
argy CATSTR <@SubStr(<mov nEvents:eax>,1,11) , @SubStr(<mov nEvents:eax>,13)>
.data
nEvents dd 0
.code
argy
ret
End