Overhaul build system.
This commit is contained in:
parent
5fad7f347a
commit
d6c92fc8ac
|
@ -5,3 +5,4 @@
|
|||
/src/res/sources/*.z80
|
||||
/src/res/sources/*.inc
|
||||
/bin/*.sav
|
||||
.DS_Store
|
||||
|
|
|
@ -7,11 +7,20 @@
|
|||
{
|
||||
"type": "emulicious-debugger",
|
||||
"request": "launch",
|
||||
"name": "Launch in Emulicious",
|
||||
"name": "Launch in Emulicious (gbc)",
|
||||
"program": "${workspaceFolder}/bin/PandorasBlocks.gbc",
|
||||
"port": 58870,
|
||||
"stopOnEntry": false,
|
||||
"preLaunchTask": "buildrom"
|
||||
"preLaunchTask": "rebuildrom"
|
||||
},
|
||||
{
|
||||
"type": "emulicious-debugger",
|
||||
"request": "launch",
|
||||
"name": "Launch in Emulicious (pocket)",
|
||||
"program": "${workspaceFolder}/bin/PandorasBlocks.pocket",
|
||||
"port": 58870,
|
||||
"stopOnEntry": false,
|
||||
"preLaunchTask": "rebuildrom"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
|
@ -4,7 +4,17 @@
|
|||
{
|
||||
"label": "buildrom",
|
||||
"type": "shell",
|
||||
"command": "make"
|
||||
"command": "./build.py"
|
||||
},
|
||||
{
|
||||
"label": "rebuildrom",
|
||||
"type": "shell",
|
||||
"command": "./build.py rebuild"
|
||||
},
|
||||
{
|
||||
"label": "cleanrom",
|
||||
"type": "shell",
|
||||
"command": "./build.py clean"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
54
Makefile
54
Makefile
|
@ -1,54 +0,0 @@
|
|||
.SUFFIXES:
|
||||
|
||||
RM_RF := rm -rf
|
||||
MKDIR_P := mkdir -p
|
||||
ifeq ($(strip $(shell which rm)),)
|
||||
RM_RF := -rmdir /s /q
|
||||
MKDIR_P := -mkdir
|
||||
endif
|
||||
|
||||
RGBDS ?=
|
||||
RGBASM := $(RGBDS)rgbasm
|
||||
RGBLINK := $(RGBDS)rgblink
|
||||
RGBFIX := $(RGBDS)rgbfix
|
||||
RGBGFX := $(RGBDS)rgbgfx
|
||||
|
||||
ROM = bin/$(ROMNAME).$(ROMEXT)
|
||||
|
||||
INCDIRS = src/ src/include/
|
||||
WARNINGS = all extra
|
||||
ASFLAGS = -p ${PADVALUE} $(addprefix -I,${INCDIRS}) $(addprefix -W,${WARNINGS})
|
||||
LDFLAGS = -p ${PADVALUE}
|
||||
FIXFLAGS = -p ${PADVALUE} -i "${GAMEID}" -k "${LICENSEE}" -l ${OLDLIC} -m ${MBC} -n ${VERSION} -r ${SRAMSIZE} -t ${TITLE}
|
||||
|
||||
SRCS = $(wildcard src/*.asm)
|
||||
|
||||
include project.mk
|
||||
|
||||
all: $(ROM)
|
||||
.PHONY: all
|
||||
|
||||
clean:
|
||||
$(RM_RF) dep obj bin
|
||||
.PHONY: clean
|
||||
|
||||
rebuild:
|
||||
$(MAKE) clean
|
||||
$(MAKE) all
|
||||
.PHONY: rebuild
|
||||
|
||||
bin/%.${ROMEXT}: $(patsubst src/%.asm,obj/%.o,${SRCS})
|
||||
@${MKDIR_P} "${@D}"
|
||||
${RGBLINK} ${LDFLAGS} -m bin/$*.map -n bin/$*.sym -o $@ $^ \
|
||||
&& ${RGBFIX} -v ${FIXFLAGS} $@
|
||||
|
||||
obj/%.mk: src/%.asm
|
||||
@${MKDIR_P} "${@D}"
|
||||
${RGBASM} ${ASFLAGS} -M $@ -MG -MP -MQ ${@:.mk=.o} -MQ $@ -o ${@:.mk=.o} $<
|
||||
|
||||
obj/%.o: obj/%.mk
|
||||
@touch $@
|
||||
|
||||
ifeq ($(filter clean,${MAKECMDGOALS}),)
|
||||
include $(patsubst src/%.asm,obj/%.mk,${SRCS})
|
||||
endif
|
Binary file not shown.
|
@ -3446,27 +3446,27 @@ WRAM0 bank #0:
|
|||
$cf20 = wShouldGoStaffRoll
|
||||
$cf21 = wNoMoreLocks
|
||||
$cf22 = wSkippedSectionsBCD
|
||||
SECTION: $cf23-$cf2c ($000a bytes) ["Time Variables"]
|
||||
$cf23 = wMinutes
|
||||
$cf24 = wSeconds
|
||||
$cf25 = wFrames
|
||||
$cf26 = wSectionMinutes
|
||||
$cf27 = wSectionSeconds
|
||||
$cf28 = wSectionFrames
|
||||
$cf29 = wCountDown
|
||||
$cf2b = wCountDownZero
|
||||
$cf2c = wSectionTimerReset
|
||||
SECTION: $cf2d-$cf36 ($000a bytes) ["Progress Variables"]
|
||||
$cf2d = wProgress0B1
|
||||
$cf2e = wProgress0B2
|
||||
$cf2f = wProgress1B1
|
||||
$cf30 = wProgress1B2
|
||||
$cf31 = wProgress2B1
|
||||
$cf32 = wProgress2B2
|
||||
$cf33 = wProgress3B1
|
||||
$cf34 = wProgress3B2
|
||||
$cf35 = wProgress4B1
|
||||
$cf36 = wProgress4B2
|
||||
SECTION: $cf23-$cf2c ($000a bytes) ["Progress Variables"]
|
||||
$cf23 = wProgress0B1
|
||||
$cf24 = wProgress0B2
|
||||
$cf25 = wProgress1B1
|
||||
$cf26 = wProgress1B2
|
||||
$cf27 = wProgress2B1
|
||||
$cf28 = wProgress2B2
|
||||
$cf29 = wProgress3B1
|
||||
$cf2a = wProgress3B2
|
||||
$cf2b = wProgress4B1
|
||||
$cf2c = wProgress4B2
|
||||
SECTION: $cf2d-$cf36 ($000a bytes) ["Time Variables"]
|
||||
$cf2d = wMinutes
|
||||
$cf2e = wSeconds
|
||||
$cf2f = wFrames
|
||||
$cf30 = wSectionMinutes
|
||||
$cf31 = wSectionSeconds
|
||||
$cf32 = wSectionFrames
|
||||
$cf33 = wCountDown
|
||||
$cf35 = wCountDownZero
|
||||
$cf36 = wSectionTimerReset
|
||||
SECTION: $cf37-$cf40 ($000a bytes) ["Globals"]
|
||||
$cf37 = wSwapABState
|
||||
$cf38 = wRNGModeState
|
||||
|
@ -3554,20 +3554,20 @@ HRAM bank #0:
|
|||
$ffd2 = hNextPiece
|
||||
$ffd3 = hUpcomingPiece1
|
||||
$ffd4 = hUpcomingPiece2
|
||||
SECTION: $ffd5-$ffde ($000a bytes) ["High Gameplay Variables"]
|
||||
$ffd5 = hCurrentPiece
|
||||
$ffd6 = hCurrentPieceX
|
||||
$ffd7 = hCurrentPieceY
|
||||
$ffd8 = hCurrentPieceRotationState
|
||||
$ffd9 = hHeldPiece
|
||||
$ffda = hHoldSpent
|
||||
$ffdb = hMode
|
||||
$ffdc = hModeCounter
|
||||
$ffdd = hPrePause
|
||||
$ffde = hRequestedJingle
|
||||
SECTION: $ffdf-$ffe8 ($000a bytes) ["OAM DMA"]
|
||||
$ffdf = hOAMDMA
|
||||
$ffe5 = \u00210
|
||||
SECTION: $ffd5-$ffde ($000a bytes) ["OAM DMA"]
|
||||
$ffd5 = hOAMDMA
|
||||
$ffdb = \u00210
|
||||
SECTION: $ffdf-$ffe8 ($000a bytes) ["High Gameplay Variables"]
|
||||
$ffdf = hCurrentPiece
|
||||
$ffe0 = hCurrentPieceX
|
||||
$ffe1 = hCurrentPieceY
|
||||
$ffe2 = hCurrentPieceRotationState
|
||||
$ffe3 = hHeldPiece
|
||||
$ffe4 = hHoldSpent
|
||||
$ffe5 = hMode
|
||||
$ffe6 = hModeCounter
|
||||
$ffe7 = hPrePause
|
||||
$ffe8 = hRequestedJingle
|
||||
SECTION: $ffe9-$fff1 ($0009 bytes) ["High SFX Variables"]
|
||||
$ffe9 = hPlayhead
|
||||
$ffeb = hCurrentlyPlaying
|
||||
|
@ -3586,8 +3586,8 @@ HRAM bank #0:
|
|||
SECTION: $fffb-$fffc ($0002 bytes) ["High Time Variables"]
|
||||
$fffb = hFrameCtr
|
||||
$fffc = hEvenFrame
|
||||
SECTION: $fffd-$fffd ($0001 byte) ["High Globals"]
|
||||
$fffd = hGameState
|
||||
SECTION: $fffe-$fffe ($0001 byte) ["High Interrupt Variables"]
|
||||
$fffe = hLCDCCtr
|
||||
SECTION: $fffd-$fffd ($0001 byte) ["High Interrupt Variables"]
|
||||
$fffd = hLCDCCtr
|
||||
SECTION: $fffe-$fffe ($0001 byte) ["High Globals"]
|
||||
$fffe = hGameState
|
||||
TOTAL EMPTY: $0000 bytes
|
||||
|
|
Binary file not shown.
|
@ -3069,25 +3069,25 @@
|
|||
00:cf20 wShouldGoStaffRoll
|
||||
00:cf21 wNoMoreLocks
|
||||
00:cf22 wSkippedSectionsBCD
|
||||
00:cf23 wMinutes
|
||||
00:cf24 wSeconds
|
||||
00:cf25 wFrames
|
||||
00:cf26 wSectionMinutes
|
||||
00:cf27 wSectionSeconds
|
||||
00:cf28 wSectionFrames
|
||||
00:cf29 wCountDown
|
||||
00:cf2b wCountDownZero
|
||||
00:cf2c wSectionTimerReset
|
||||
00:cf2d wProgress0B1
|
||||
00:cf2e wProgress0B2
|
||||
00:cf2f wProgress1B1
|
||||
00:cf30 wProgress1B2
|
||||
00:cf31 wProgress2B1
|
||||
00:cf32 wProgress2B2
|
||||
00:cf33 wProgress3B1
|
||||
00:cf34 wProgress3B2
|
||||
00:cf35 wProgress4B1
|
||||
00:cf36 wProgress4B2
|
||||
00:cf23 wProgress0B1
|
||||
00:cf24 wProgress0B2
|
||||
00:cf25 wProgress1B1
|
||||
00:cf26 wProgress1B2
|
||||
00:cf27 wProgress2B1
|
||||
00:cf28 wProgress2B2
|
||||
00:cf29 wProgress3B1
|
||||
00:cf2a wProgress3B2
|
||||
00:cf2b wProgress4B1
|
||||
00:cf2c wProgress4B2
|
||||
00:cf2d wMinutes
|
||||
00:cf2e wSeconds
|
||||
00:cf2f wFrames
|
||||
00:cf30 wSectionMinutes
|
||||
00:cf31 wSectionSeconds
|
||||
00:cf32 wSectionFrames
|
||||
00:cf33 wCountDown
|
||||
00:cf35 wCountDownZero
|
||||
00:cf36 wSectionTimerReset
|
||||
00:cf37 wSwapABState
|
||||
00:cf38 wRNGModeState
|
||||
00:cf39 wRotModeState
|
||||
|
@ -3160,17 +3160,17 @@
|
|||
00:ffd2 hNextPiece
|
||||
00:ffd3 hUpcomingPiece1
|
||||
00:ffd4 hUpcomingPiece2
|
||||
00:ffd5 hCurrentPiece
|
||||
00:ffd6 hCurrentPieceX
|
||||
00:ffd7 hCurrentPieceY
|
||||
00:ffd8 hCurrentPieceRotationState
|
||||
00:ffd9 hHeldPiece
|
||||
00:ffda hHoldSpent
|
||||
00:ffdb hMode
|
||||
00:ffdc hModeCounter
|
||||
00:ffdd hPrePause
|
||||
00:ffde hRequestedJingle
|
||||
00:ffdf hOAMDMA
|
||||
00:ffd5 hOAMDMA
|
||||
00:ffdf hCurrentPiece
|
||||
00:ffe0 hCurrentPieceX
|
||||
00:ffe1 hCurrentPieceY
|
||||
00:ffe2 hCurrentPieceRotationState
|
||||
00:ffe3 hHeldPiece
|
||||
00:ffe4 hHoldSpent
|
||||
00:ffe5 hMode
|
||||
00:ffe6 hModeCounter
|
||||
00:ffe7 hPrePause
|
||||
00:ffe8 hRequestedJingle
|
||||
00:ffe9 hPlayhead
|
||||
00:ffeb hCurrentlyPlaying
|
||||
00:ffec hPlayQueue
|
||||
|
@ -3186,5 +3186,5 @@
|
|||
00:fffa hFilterMode
|
||||
00:fffb hFrameCtr
|
||||
00:fffc hEvenFrame
|
||||
00:fffd hGameState
|
||||
00:fffe hLCDCCtr
|
||||
00:fffd hLCDCCtr
|
||||
00:fffe hGameState
|
||||
|
|
|
@ -0,0 +1,162 @@
|
|||
#!/usr/bin/env python
|
||||
# Game ID and title of the game. ID has to be four characters, title can be up to 11
|
||||
GAME_ID = "DTGM"
|
||||
GAME_TITLE = "DMGTRIS"
|
||||
|
||||
# Version of the game as embedded in the rom
|
||||
GAME_VERSION = "0x01"
|
||||
|
||||
# Mapper type and sram size
|
||||
MAPPER_TYPE = "MBC5+RAM+BATTERY"
|
||||
SRAM_AMOUNT = "0x04"
|
||||
|
||||
# Rom filename, without extension
|
||||
ROM_NAME = "PandorasBlocks"
|
||||
|
||||
# Extra flags
|
||||
RGBASM_FLAGS = ["-Q", "25"]
|
||||
RGBLINK_FLAGS = []
|
||||
RGBFIX_FLAGS = ["-c"]
|
||||
|
||||
# You will not be likely to need to change these options.
|
||||
OLD_LICENSEE = "0x33"
|
||||
PAD_VALUE = "0xFF"
|
||||
LICENSEE = "HB"
|
||||
|
||||
|
||||
# Do not edit below this line.
|
||||
import sys, shutil, hashlib, subprocess
|
||||
from pathlib import Path
|
||||
|
||||
def clean():
|
||||
shutil.rmtree("./bin", ignore_errors=True)
|
||||
shutil.rmtree("./obj", ignore_errors=True)
|
||||
|
||||
def assemble(file, out, extra = []):
|
||||
cmd = [
|
||||
"rgbasm",
|
||||
"-p", PAD_VALUE,
|
||||
"-Isrc/",
|
||||
"-Isrc/include",
|
||||
"-Wall",
|
||||
"-Wextra"
|
||||
]
|
||||
cmd += RGBASM_FLAGS
|
||||
cmd += extra
|
||||
cmd += [
|
||||
"-o", out, file
|
||||
]
|
||||
result = subprocess.run(cmd, stderr=subprocess.STDOUT, stdout=subprocess.PIPE, text=True)
|
||||
if result.returncode == 0:
|
||||
return True
|
||||
else:
|
||||
print(result.stdout)
|
||||
return False
|
||||
|
||||
def link(files, out, extra = []):
|
||||
cmd = [
|
||||
"rgblink",
|
||||
"-p", PAD_VALUE
|
||||
]
|
||||
cmd += RGBLINK_FLAGS
|
||||
cmd += extra
|
||||
cmd += [
|
||||
"-o", out
|
||||
]
|
||||
cmd += files
|
||||
result = subprocess.run(cmd, stderr=subprocess.STDOUT, stdout=subprocess.PIPE, text=True)
|
||||
if result.returncode == 0:
|
||||
return True
|
||||
else:
|
||||
print(result.stdout)
|
||||
return False
|
||||
|
||||
def fix(file, extra = []):
|
||||
cmd = [
|
||||
"rgbfix",
|
||||
"-v",
|
||||
"-p", PAD_VALUE,
|
||||
"-i", GAME_ID,
|
||||
"-k", LICENSEE,
|
||||
"-l", OLD_LICENSEE,
|
||||
"-m", MAPPER_TYPE,
|
||||
"-n", GAME_VERSION,
|
||||
"-r", SRAM_AMOUNT,
|
||||
"-t", GAME_TITLE
|
||||
]
|
||||
cmd += RGBFIX_FLAGS
|
||||
cmd += extra
|
||||
cmd += [file]
|
||||
result = subprocess.run(cmd, stderr=subprocess.STDOUT, stdout=subprocess.PIPE, text=True)
|
||||
if result.returncode == 0:
|
||||
return True
|
||||
else:
|
||||
print(result.stdout)
|
||||
return False
|
||||
|
||||
def build():
|
||||
# Make sure the output directories exist.
|
||||
Path("./bin").mkdir(exist_ok=True)
|
||||
Path("./obj").mkdir(exist_ok=True)
|
||||
Path("./obj/a").mkdir(exist_ok=True)
|
||||
Path("./obj/n").mkdir(exist_ok=True)
|
||||
|
||||
# RGBASM pass
|
||||
files = [f for f in Path("./src").glob("*.asm") if f.is_file()]
|
||||
for file in files:
|
||||
# Check if the file needs reassembly
|
||||
digest_file = Path(f"./obj/{file.stem}.sha256")
|
||||
n_file = Path(f"./obj/n/{file.stem}.o")
|
||||
a_file = Path(f"./obj/a/{file.stem}.o")
|
||||
old_digest = ""
|
||||
new_digest = ""
|
||||
if digest_file.exists(): old_digest = digest_file.read_text()
|
||||
with file.open("rb") as f: new_digest = hashlib.file_digest(f, "sha256").hexdigest()
|
||||
|
||||
if old_digest != new_digest:
|
||||
print(f"Assembling {file.name}...")
|
||||
n_file.unlink(missing_ok=True)
|
||||
n_result = assemble(str(file), str(n_file), [])
|
||||
if not n_result:
|
||||
print("Aborting.")
|
||||
return
|
||||
a_file.unlink(missing_ok=True)
|
||||
a_result = assemble(str(file), str(a_file), ["-D" "BUILD_POCKET"])
|
||||
if not a_result:
|
||||
print("Aborting.")
|
||||
return
|
||||
digest_file.write_text(new_digest)
|
||||
|
||||
# RGBLINK + RGBFIX pass
|
||||
print(f"Linking bin/{ROM_NAME}.gbc...")
|
||||
n_files = [str(f) for f in Path("./obj/n").glob("*.o") if f.is_file()]
|
||||
Path(f"./bin/{ROM_NAME}.gbc").unlink(missing_ok=True)
|
||||
Path(f"./bin/{ROM_NAME}.map").unlink(missing_ok=True)
|
||||
Path(f"./bin/{ROM_NAME}.sym").unlink(missing_ok=True)
|
||||
n_result = link(n_files, f"bin/{ROM_NAME}.gbc", ["-m", f"bin/{ROM_NAME}.map", "-n", f"bin/{ROM_NAME}.sym"])
|
||||
if not n_result:
|
||||
print("Aborting.")
|
||||
return
|
||||
print(f"Fixing bin/{ROM_NAME}.gbc...")
|
||||
n_result = fix(f"bin/{ROM_NAME}.gbc")
|
||||
if not n_result:
|
||||
print("Aborting.")
|
||||
return
|
||||
|
||||
print(f"Linking bin/{ROM_NAME}.pocket...")
|
||||
Path(f"./bin/{ROM_NAME}.pocket").unlink(missing_ok=True)
|
||||
a_files = [str(f) for f in Path("./obj/a").glob("*.o") if f.is_file()]
|
||||
a_result = link(a_files, f"bin/{ROM_NAME}.pocket")
|
||||
if not a_result:
|
||||
print("Aborting.")
|
||||
return
|
||||
print(f"Fixing bin/{ROM_NAME}.pocket...")
|
||||
a_result = fix(f"bin/{ROM_NAME}.pocket", ["-L", "src/include/pocket-logo.1bpp"])
|
||||
if not a_result:
|
||||
print("Aborting.")
|
||||
return
|
||||
|
||||
if __name__ == "__main__":
|
||||
if sys.argv[-1] == "clean": clean()
|
||||
if sys.argv[-1] == "rebuild": clean(); build()
|
||||
else: build()
|
26
deploy.bat
26
deploy.bat
|
@ -1,26 +0,0 @@
|
|||
@echo off
|
||||
cd /D "%~dp0"
|
||||
echo Cleaning up...
|
||||
make clean > NUL
|
||||
|
||||
echo Making pocket version...
|
||||
del /Q src\include\hardware.inc > NUL
|
||||
copy src\include\hardware.analogue src\include\hardware.inc > NUL
|
||||
make > NUL
|
||||
|
||||
echo Fixing pocket version header...
|
||||
ren bin\PandorasBlocks.gbc PandorasBlocks.pocket > NUL
|
||||
python patch_pocket.py > NUL
|
||||
rgbfix -fhg -O bin\PandorasBlocks.pocket > NUL
|
||||
|
||||
echo Making GB version...
|
||||
rd /S /Q obj > NUL
|
||||
rd /S /Q dep > NUL
|
||||
del /Q src\include\hardware.inc > NUL
|
||||
copy src\include\hardware.nintendo src\include\hardware.inc > NUL
|
||||
make > NUL
|
||||
|
||||
echo Pushing new version...
|
||||
git add . > NUL
|
||||
git commit -am %* > NUL
|
||||
git push
|
16
deploy.sh
16
deploy.sh
|
@ -1,16 +0,0 @@
|
|||
#!/bin/sh
|
||||
echo "Cleaning..."
|
||||
make clean >/dev/null
|
||||
echo "Making pocket version."
|
||||
rm src/include/hardware.inc >/dev/null
|
||||
cp src/include/hardware.analogue src/include/hardware.inc >/dev/null
|
||||
make >/dev/null
|
||||
echo "Fixing pocket version."
|
||||
mv bin/PandorasBlocks.gbc bin/PandorasBlocks.pocket >/dev/null
|
||||
python patch_pocket.py >/dev/null
|
||||
rgbfix -fhg -O bin/PandorasBlocks.pocket >/dev/null
|
||||
echo "Making regular version."
|
||||
rm -rf obj >/dev/null
|
||||
rm src/include/hardware.inc >/dev/null
|
||||
cp src/include/hardware.nintendo src/include/hardware.inc >/dev/null
|
||||
make >/dev/null
|
|
@ -1,5 +0,0 @@
|
|||
logo = b"\x01\x10\xCE\xEF\x00\x00\x44\xAA\x00\x74\x00\x18\x11\x95\x00\x34\x00\x1A\x00\xD5\x00\x22\x00\x69\x6F\xF6\xF7\x73\x09\x90\xE1\x10\x44\x40\x9A\x90\xD5\xD0\x44\x30\xA9\x21\x5D\x48\x22\xE0\xF8\x60"
|
||||
|
||||
with open('bin/PandorasBlocks.pocket', 'rb+') as f:
|
||||
f.seek(0x104)
|
||||
f.write(logo)
|
12
project.mk
12
project.mk
|
@ -1,12 +0,0 @@
|
|||
PADVALUE := 0xFF
|
||||
VERSION := 0x01
|
||||
GAMEID := DTGM
|
||||
TITLE := DMGTRIS
|
||||
LICENSEE := NR
|
||||
OLDLIC := 0x33
|
||||
MBC := 0x1B
|
||||
SRAMSIZE := 0x04
|
||||
ROMNAME := PandorasBlocks
|
||||
ROMEXT := gbc
|
||||
ASFLAGS += -Q 25
|
||||
FIXFLAGS += -c
|
File diff suppressed because it is too large
Load Diff
|
@ -45,6 +45,7 @@
|
|||
;* Rev 4.8.1 - 29-Apr-23 : Added rOPRI (rbong)
|
||||
;* Rev 4.9.0 - 24-Jun-23 : Added definitions for interrupt vectors (sukus)
|
||||
;* Rev 4.9.1 - 11-Sep-23 : Added repository link and CC0 waiver notice
|
||||
;* Rev 4.9.2 - 18-Aug-24 : Corrected CART_ROM_MBC5_BAT to CART_ROM_MBC5_RAM (DevEd)
|
||||
|
||||
|
||||
; NOTE: REVISION NUMBER CHANGES MUST BE REFLECTED
|
||||
|
@ -68,7 +69,7 @@ DEF HARDWARE_INC EQU 1
|
|||
; rev_Check_hardware_inc 4.1 (equivalent to 4.1.0)
|
||||
; rev_Check_hardware_inc 4 (equivalent to 4.0.0)
|
||||
MACRO rev_Check_hardware_inc
|
||||
DEF CUR_VER equs "4,9,1" ; ** UPDATE THIS LINE WHEN CHANGING THE REVISION NUMBER **
|
||||
DEF CUR_VER equs "4,9,2" ; ** UPDATE THIS LINE WHEN CHANGING THE REVISION NUMBER **
|
||||
|
||||
DEF MIN_VER equs STRRPL("\1", ".", ",")
|
||||
DEF INTERNAL_CHK equs """MACRO ___internal
|
||||
|
@ -1040,7 +1041,7 @@ DEF CART_ROM_MBC3 EQU $11
|
|||
DEF CART_ROM_MBC3_RAM EQU $12
|
||||
DEF CART_ROM_MBC3_RAM_BAT EQU $13
|
||||
DEF CART_ROM_MBC5 EQU $19
|
||||
DEF CART_ROM_MBC5_BAT EQU $1A
|
||||
DEF CART_ROM_MBC5_RAM EQU $1A
|
||||
DEF CART_ROM_MBC5_RAM_BAT EQU $1B
|
||||
DEF CART_ROM_MBC5_RUMBLE EQU $1C
|
||||
DEF CART_ROM_MBC5_RAM_RUMBLE EQU $1D
|
||||
|
|
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Loading…
Reference in New Issue