Hi guys!
I want to pass a parameter to a muli-line maco with contains a comma ("mov bp,sp").
So I tried something like (which I found in the docs)
segment code
org 100h
%macro testy 2+
%1
%2
%endmacro
testy @\{mov bp,sp@\},clc
mov ah,4ch
int 21h
But that doesn't work at all...
What am I doing wrong???
Cheers!