pl-sem/sem3/task-macro/macro.asm
2023-08-18 01:08:53 +03:00

6 lines
83 B
NASM

%macro test 3
db %1, ",", %2, ",", %3
%endmacro
test "hello", ",", " world"