diff options
author | Ian C <ianc@noddybox.co.uk> | 2016-05-17 08:38:47 +0100 |
---|---|---|
committer | Ian C <ianc@noddybox.co.uk> | 2016-05-17 08:38:47 +0100 |
commit | 393556d2fc70dc0def5a6bb0463daf234ef23e36 (patch) | |
tree | ffeac76300a03bb6e4e34479d11ec2a64afcacfd /src/test | |
parent | 34eab58c9a01b90beb0ce23a2a0f6c2156e8d4fd (diff) |
Added support for 24 bit address labels.
* Also fixes bug where bank wasn't reset between passes.
Diffstat (limited to 'src/test')
-rw-r--r-- | src/test/lib2 | 3 | ||||
-rw-r--r-- | src/test/link | 4 |
2 files changed, 4 insertions, 3 deletions
diff --git a/src/test/lib2 b/src/test/lib2 index a1c6224..a16febf 100644 --- a/src/test/lib2 +++ b/src/test/lib2 @@ -1,7 +1,8 @@ option output-file,lib2.lib option output-format,lib - org $8800 + option +address24 + org $078800 start_lib2: ld hl,$4321 diff --git a/src/test/link b/src/test/link index 41d11f1..ec09bd6 100644 --- a/src/test/link +++ b/src/test/link @@ -2,5 +2,5 @@ option +list option list-labels,all - import "lib2.lib",all,-$1000 - import "lib1.lib",all,$1000 + import "lib2.lib" + import "lib1.lib" |