diff options
Diffstat (limited to 'gas/testsuite/gasp/pl1.asm')
-rw-r--r-- | gas/testsuite/gasp/pl1.asm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gas/testsuite/gasp/pl1.asm b/gas/testsuite/gasp/pl1.asm new file mode 100644 index 0000000000..f38bfde93b --- /dev/null +++ b/gas/testsuite/gasp/pl1.asm @@ -0,0 +1,20 @@ + + .ALTERNATE + +alloc MACRO val1,val2 + DB val1 + DB val2 + ENDM + + alloc "that's" 'show biz' + alloc 0,1 + alloc 0 1 + alloc 0 1 + alloc ,1 + + + + + + + |