summaryrefslogtreecommitdiff
path: root/home/print_hex.asm
diff options
context:
space:
mode:
authorluckytyphlosion <10688458+luckytyphlosion@users.noreply.github.com>2018-07-22 09:20:33 -0400
committerGitHub <noreply@github.com>2018-07-22 09:20:33 -0400
commita586811e197d2a28d3a08dff03548fb69342da96 (patch)
treed5eec033243b0031afd3a82d47bbe1b7779d1675 /home/print_hex.asm
parent5ec276e7c77244befe0b6c9931cda191aa3818b6 (diff)
parent5b4ef99f4bfec7a1cf41cd3eab601d355bb0fadf (diff)
Merge pull request #38 from luckytyphlosion/section-reorg
Add linkerscript to replace completely anonymous sections.
Diffstat (limited to 'home/print_hex.asm')
-rw-r--r--home/print_hex.asm12
1 files changed, 6 insertions, 6 deletions
diff --git a/home/print_hex.asm b/home/print_hex.asm
index 8292884..2a68c2b 100644
--- a/home/print_hex.asm
+++ b/home/print_hex.asm
@@ -1,10 +1,10 @@
INCLUDE "constants.asm"
-if DEBUG
-SECTION "Print Hexadecimal functions", ROM0[$3597]
-else
-SECTION "Print Hexadecimal functions", ROM0[$355B]
-endc
+; if DEBUG
+SECTION "home/print_hex.asm", ROM0
+; else
+; SECTION "Print Hexadecimal functions", ROM0[$355B]
+; endc
PrintHexBytes: ; 3597 (0:3597)
; Print c hex bytes located at de to hl
@@ -43,4 +43,4 @@ GetHexDigit: ; 35b2 (0:35b2)
ret
.hexDigitTable:
- db "0123456789ABCDEF"
+ db "0123456789ABCDEF" \ No newline at end of file