diff options
author | mid-kid <esteve.varela@gmail.com> | 2020-02-23 14:28:21 +0100 |
---|---|---|
committer | mid-kid <esteve.varela@gmail.com> | 2020-02-23 14:28:21 +0100 |
commit | 44128c5d989cf56e0305bedc37044c093bc02668 (patch) | |
tree | ccda83221cfbdad770f81a87e950f4924e5d8d7f /home.asm | |
parent | 7bd8d56ff93e14839d304cc3a3a2a182e992f909 (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.asm | 16 |
1 files changed, 1 insertions, 15 deletions
@@ -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 |