summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/emptyarg.asm8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/emptyarg.asm b/test/emptyarg.asm
index f164fe41..af02e378 100644
--- a/test/emptyarg.asm
+++ b/test/emptyarg.asm
@@ -50,6 +50,10 @@
xyzzy "with","empty",EMPTY
%endmacro
+%macro orange 1
+ db %{1:1}
+%endmacro
+
%macro prange1 2-3
db %{1:2}, 0%3
%endmacro
@@ -137,3 +141,7 @@ flup: foo 1,2
prange2 {121},{122}
prange2 {121},122,{123}
prange2 121,{122,122},123
+
+ orange 130
+ orange 130, 131
+ orange {130, 131}