import gdb-2000-02-02 snapshot
[external/binutils.git] / gas / testsuite / gasp / pl2.asm
1
2
3         .ALTERNATE
4
5         ! ok
6         !! also ok
7
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
15
16         foo
17
18
19 define  MACRO   val1,val2
20         DB      val1    ! this comment will show up 
21         DB      val2    !! this on won't
22         ENDM
23
24         define  0,1
25
26
27         END
28