SameBoy | Accurate GB/GBC emulator |
| download: https://git.y1.nz/archives/sameboy.tar.gz | |
| README | Files | Log | Refs | LICENSE |
commit b51aac4bf5ad0d7477b9ccddc1b327a0bf1ada0f parent 68ba89cf43e25746f1bdcead59a927a50c2efba9 Author: Lior Halphon <LIJI32@gmail.com> Date: Sat, 9 Dec 2023 15:04:27 +0200 Modernize some RGBASM syntax to silence most deprecation warnings in the upcoming 0.7 RGBDS release Diffstat:
| M | BootROMs/agb_boot.asm | 2 | +- |
| M | BootROMs/cgb0_boot.asm | 2 | +- |
| M | BootROMs/cgb_boot.asm | 4 | ++-- |
| M | BootROMs/cgb_boot_fast.asm | 2 | +- |
| M | BootROMs/mgb_boot.asm | 2 | +- |
| M | BootROMs/sgb2_boot.asm | 2 | +- |
6 files changed, 7 insertions(+), 7 deletions(-)
diff --git a/BootROMs/agb_boot.asm b/BootROMs/agb_boot.asm @@ -1,2 +1,2 @@ -AGB EQU 1 +DEF AGB = 1 include "cgb_boot.asm" diff --git a/BootROMs/cgb0_boot.asm b/BootROMs/cgb0_boot.asm @@ -1,2 +1,2 @@ -CGB0 EQU 1 +DEF CGB0 = 1 include "cgb_boot.asm" diff --git a/BootROMs/cgb_boot.asm b/BootROMs/cgb_boot.asm @@ -665,8 +665,8 @@ ReadCGBLogoHalfTile: ; LoadTileset using PB12 codec, 2020 Jakub Kądziołka ; (based on PB8 codec, 2019 Damian Yerrick) -SameBoyLogo_dst = $8080 -SameBoyLogo_length = (128 * 24) / 64 +DEF SameBoyLogo_dst = $8080 +DEF SameBoyLogo_length = (128 * 24) / 64 LoadTileset: ld hl, SameBoyLogo diff --git a/BootROMs/cgb_boot_fast.asm b/BootROMs/cgb_boot_fast.asm @@ -1,2 +1,2 @@ -FAST EQU 1 +DEF FAST = 1 include "cgb_boot.asm" diff --git a/BootROMs/mgb_boot.asm b/BootROMs/mgb_boot.asm @@ -1,2 +1,2 @@ -MGB EQU 1 +DEF MGB = 1 include "dmg_boot.asm" diff --git a/BootROMs/sgb2_boot.asm b/BootROMs/sgb2_boot.asm @@ -1,2 +1,2 @@ -SGB2 EQU 1 +DEF SGB2 = 1 include "sgb_boot.asm"
This webpage is intended to be an accessible preview of this repository. To get a fuller picture, clone it and use the git CLI.