-
Notifications
You must be signed in to change notification settings - Fork 489
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add default_rom and symbols to make build
- Loading branch information
Showing
15 changed files
with
132 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
; File generated by rgblink | ||
00:0000 main | ||
00:0006 main.erase | ||
00:0015 main.memcpy | ||
00:002c main.four_range | ||
00:0059 main.wait_vblank | ||
00:006c main.no_effect | ||
00:0071 main.play_sound | ||
00:007e main.adj_sound | ||
00:0087 main.wave_table | ||
00:0097 main.effect | ||
00:00a5 main.exit_vblank | ||
00:00bb main.logo | ||
00:00bb main.P1 | ||
00:00c3 main.P2 | ||
00:00cb main.Y1 | ||
00:00d3 main.B2 | ||
00:00db main.O | ||
00:00e3 main.Y2 | ||
00:00fc exit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
; File generated by rgblink | ||
00:0000 main | ||
00:0006 main.erase | ||
00:0015 main.memcpy | ||
00:002c main.four_range | ||
00:0059 main.wait_vblank | ||
00:006c main.no_effect | ||
00:0071 main.play_sound | ||
00:007e main.adj_sound | ||
00:0087 main.wave_table | ||
00:0097 main.effect | ||
00:00a5 main.exit_vblank | ||
00:00bb main.logo | ||
00:00bb main.P1 | ||
00:00c3 main.P2 | ||
00:00cb main.Y1 | ||
00:00d3 main.B2 | ||
00:00db main.O | ||
00:00e3 main.Y2 | ||
00:00fc exit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
; File generated by rgblink | ||
00:0000 Tilemap | ||
00:0100 EntryPoint | ||
00:0150 Main | ||
00:0155 Main.waitVBlank | ||
00:015c Main.setup | ||
00:0174 Main.readTileset | ||
00:0187 Main.readTilemap | ||
00:01a0 Main.clearOAM | ||
00:01ab Main.loop | ||
00:01bb Main.sync | ||
00:01c2 Main.move | ||
00:01cd Tileset |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
INCLUDE "default_rom.asm" | ||
|
||
SECTION "CGB Flag", ROM0[$143] | ||
db $80 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
; File generated by rgblink | ||
00:0000 Tilemap | ||
00:0100 EntryPoint | ||
00:0150 Main | ||
00:0155 Main.waitVBlank | ||
00:015c Main.setup | ||
00:0174 Main.readTileset | ||
00:0187 Main.readTilemap | ||
00:01a0 Main.clearOAM | ||
00:01ab Main.loop | ||
00:01bb Main.sync | ||
00:01c2 Main.move | ||
00:01cd Tileset |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,29 @@ | ||
; hardware.inc | ||
rP1 EQU $FF00 | ||
rSB EQU $FF01 | ||
rSC EQU $FF02 | ||
rDIV EQU $FF04 | ||
rTIMA EQU $FF05 | ||
rTMA EQU $FF06 | ||
rTAC EQU $FF07 | ||
rIF EQU $FF0F | ||
rLCDC EQU $FF40 | ||
rSTAT EQU $FF41 | ||
rSCY EQU $FF42 | ||
rSCX EQU $FF43 | ||
rLY EQU $FF44 | ||
rLYC EQU $FF45 | ||
rDMA EQU $FF46 | ||
rBGP EQU $FF47 | ||
rOBP0 EQU $FF48 | ||
rOBP1 EQU $FF49 | ||
rWY EQU $FF4A | ||
rWX EQU $FF4B | ||
rIE EQU $FFFF | ||
DEF rP1 EQU $FF00 | ||
DEF rSB EQU $FF01 | ||
DEF rSC EQU $FF02 | ||
DEF rDIV EQU $FF04 | ||
DEF rTIMA EQU $FF05 | ||
DEF rTMA EQU $FF06 | ||
DEF rTAC EQU $FF07 | ||
DEF rIF EQU $FF0F | ||
DEF rLCDC EQU $FF40 | ||
DEF rSTAT EQU $FF41 | ||
DEF rSCY EQU $FF42 | ||
DEF rSCX EQU $FF43 | ||
DEF rLY EQU $FF44 | ||
DEF rLYC EQU $FF45 | ||
DEF rDMA EQU $FF46 | ||
DEF rBGP EQU $FF47 | ||
DEF rOBP0 EQU $FF48 | ||
DEF rOBP1 EQU $FF49 | ||
DEF rWY EQU $FF4A | ||
DEF rWX EQU $FF4B | ||
DEF rIE EQU $FFFF | ||
|
||
_VRAM EQU $8000 | ||
_SCRN0 EQU $9800 | ||
_SCRN1 EQU $9C00 | ||
_RAM EQU $C000 | ||
_HRAM EQU $FF80 | ||
_OAMRAM EQU $FE00 | ||
DEF _VRAM EQU $8000 | ||
DEF _SCRN0 EQU $9800 | ||
DEF _SCRN1 EQU $9C00 | ||
DEF _RAM EQU $C000 | ||
DEF _HRAM EQU $FF80 | ||
DEF _OAMRAM EQU $FE00 |
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters