Initial revision
[binutils.git] / gas / testsuite / gasp / pl2.asm
blob2971137185b46c354ddd51ee74d77779a1894f6d
3 .ALTERNATE
5 ! ok
6 !! also ok
8 foo MACRO
9 ! you can see me
10 !! but not me
11 ! you can see me
12 !! but not me
13 but this "SHOULD !!BE OK"
14 ENDM
16 foo
19 define MACRO val1,val2
20 DB val1 ! this comment will show up
21 DB val2 !! this on won't
22 ENDM
24 define 0,1
27 END