Make that .enabl ama does not affect the next pass.

This commit is contained in:
Olaf Seibert
2020-03-07 18:43:45 +01:00
parent c4221e0b4b
commit cdef7047eb
6 changed files with 45 additions and 5 deletions

View File

@@ -11,6 +11,7 @@ TESTS="test-asciz \
test-blkb \
test-bsl-mac-arg \
test-complex-reloc \
test-enabl-ama \
test-enabl-lcm \
test-endm \
test-if \

View File

@@ -0,0 +1,24 @@
1 ;;;;
2 ;
3 ; Test that .ENABL AMA doesn't survive to the next pass.
4 ; The default at the start of each pass is set by the command line
5 ; option -d AMA or -e AMA. It is disabled by default.
6
7 000000 .psect foo,i,rw
8 000000 000000 y: .word 0
9 000002 005067 177772 clr y ; should be pc-relative, no relocation
10
11 .enabl ama ; after this, Y would be @#Y
11
Symbol table
. ******R 002 Y 000000R 002
Program sections:
. ABS. 000000 000 (RW,I,GBL,ABS,OVR,NOSAV)
000000 001 (RW,I,LCL,REL,CON,NOSAV)
FOO 000006 002 (RW,I,LCL,REL,CON,NOSAV)

11
tests/test-enabl-ama.mac Normal file
View File

@@ -0,0 +1,11 @@
;;;;
;
; Test that .ENABL AMA doesn't survive to the next pass.
; The default at the start of each pass is set by the command line
; option -d AMA or -e AMA. It is disabled by default.
.psect foo,i,rw
y: .word 0
clr y ; should be pc-relative, no relocation
.enabl ama ; after this, Y would be @#Y