summaryrefslogtreecommitdiff
path: root/home.asm
diff options
context:
space:
mode:
authormid-kid <esteve.varela@gmail.com>2020-02-23 14:28:21 +0100
committermid-kid <esteve.varela@gmail.com>2020-02-23 14:28:21 +0100
commit44128c5d989cf56e0305bedc37044c093bc02668 (patch)
treeccda83221cfbdad770f81a87e950f4924e5d8d7f /home.asm
parent7bd8d56ff93e14839d304cc3a3a2a182e992f909 (diff)
Create home/header.asm
Contains what was previously in: - home/rst.asm - home/interrupts.asm - home.asm All of this should be in a static location in the ROM so it kinda makes sense together.
Diffstat (limited to 'home.asm')
-rw-r--r--home.asm16
1 files changed, 1 insertions, 15 deletions
diff --git a/home.asm b/home.asm
index 0fe6bd706..54db23cd9 100644
--- a/home.asm
+++ b/home.asm
@@ -1,23 +1,9 @@
INCLUDE "constants.asm"
-
SECTION "NULL", ROM0
-
NULL::
-
-INCLUDE "home/rst.asm"
-
-
-INCLUDE "home/interrupts.asm"
-
-
-SECTION "Header", ROM0
-
-Start::
- nop
- jp _Start
-
+INCLUDE "home/header.asm"
SECTION "Home", ROM0