diff options
Diffstat (limited to 'gas/testsuite/gasp/pl1.out')
-rw-r--r-- | gas/testsuite/gasp/pl1.out | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/gas/testsuite/gasp/pl1.out b/gas/testsuite/gasp/pl1.out new file mode 100644 index 0000000..8b80f12 --- /dev/null +++ b/gas/testsuite/gasp/pl1.out @@ -0,0 +1,49 @@ +! +! .ALTERNATE +! + +!alloc MACRO val1,val2 +! DB val1 +! DB val2 +! ENDM +! + +! alloc "that's" 'show biz' +! DB "that's" + .byte 116,104,97,116,39,115 +! DB "show biz" + .byte 115,104,111,119,32,98,105,122 +! alloc 0,1 +! DB 0 + .byte 0 +! DB 1 + .byte 1 +! alloc 0 1 +! DB 0 + .byte 0 +! DB 1 + .byte 1 +! alloc 0 1 +! DB 0 + .byte 0 +! DB 1 + .byte 1 +! alloc ,1 +! DB + .byte +! DB 1 + .byte 1 +! + +! + +! +! + +! + +! + +! + +!
\ No newline at end of file |