mirror of
https://github.com/open-simh/simtools.git
synced 2026-01-25 19:56:30 +00:00
git-subtree-dir: crossassemblers/macro11 git-subtree-mainline:fc2c8875cagit-subtree-split:2a14ffe251command was: git subtree add --prefix=crossassemblers/macro11 git://github.com/Rhialto/macro11.git master
15 lines
449 B
Plaintext
15 lines
449 B
Plaintext
; test complex relocations
|
|
|
|
; .globl IE.ITS,IE.MON ; implicit
|
|
mov #-IE.ITS, space
|
|
|
|
space: .word IE.ITS ; the only simple relocation
|
|
.word -IE.ITS ; all others are complex relocations
|
|
.word ^C<IE.ITS>
|
|
.word IE.ITS + IE.MON
|
|
.word IE.ITS - IE.MON
|
|
.word IE.ITS * IE.MON
|
|
.word IE.ITS / IE.MON
|
|
.word IE.ITS & IE.MON
|
|
.word IE.ITS ! IE.MON
|