diff options
author | dannye <33dannye@gmail.com> | 2021-06-05 21:23:08 -0500 |
---|---|---|
committer | dannye <33dannye@gmail.com> | 2021-06-05 21:23:08 -0500 |
commit | b90f244bd22753a36448ba26c40f29f8f09e046b (patch) | |
tree | 81b9a18867ec114ae414ffc44f24fb1de83d26a8 | |
parent | 50f51e140a26d62da4cb2276a048ebd304f11425 (diff) |
baserom is no longer required
-rw-r--r-- | README.md | 1 | ||||
-rw-r--r-- | src/macros/data.asm | 4 |
2 files changed, 0 insertions, 5 deletions
@@ -7,7 +7,6 @@ It uses the following ROM as a base: - Pokémon Trading Card Game (U) [C][!].gbc `sha1: 0f8670a583255cff3e5b7ca71b5d7454d928fc48` To assemble, first download RGBDS (https://github.com/gbdev/rgbds/releases) and extract it to /usr/local/bin. -Copy the above ROM to this directory as "baserom.gbc". Run `make` in your shell. This will output a file named "poketcg.gbc". diff --git a/src/macros/data.asm b/src/macros/data.asm index b6aeb58..17c4b8e 100644 --- a/src/macros/data.asm +++ b/src/macros/data.asm @@ -1,7 +1,3 @@ -INCROM: MACRO -INCBIN "baserom.gbc", \1, \2 - \1 -ENDM - dn: MACRO db \1 << 4 | \2 ENDM |