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.
This commit is contained in:
mid-kid
2020-02-23 14:28:21 +01:00
parent 7bd8d56ff9
commit 44128c5d98
4 changed files with 67 additions and 66 deletions

View File

@@ -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