Skip to content

Commit a7b218f

Browse files
authored
Merge pull request #722 from Rangi42/update
Build boot ROMs with RGBDS 0.9.4 or greater
2 parents 8d6ff9a + 16f2d3d commit a7b218f

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/actions/install_deps.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ case `echo $1 | cut -d '-' -f 1` in
44
sudo apt-get install -yq bison libpng-dev pkg-config libsdl2-dev libgdk-pixbuf2.0-dev
55
(
66
cd `mktemp -d`
7-
curl -L https://github.com/rednex/rgbds/archive/v0.6.0.zip > rgbds.zip
7+
curl -L https://github.com/gbdev/rgbds/archive/v0.9.4.zip > rgbds.zip
88
unzip rgbds.zip
99
cd rgbds-*
1010
make -sj
@@ -33,4 +33,4 @@ case `echo $1 | cut -d '-' -f 1` in
3333
echo "Unsupported OS"
3434
exit 1
3535
;;
36-
esac
36+
esac

.github/actions/sanity_tests.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,4 @@ if [ -n "$FAILED_TESTS" ] ; then
3232
exit 1
3333
fi
3434

35-
echo Passed all tests
35+
echo Passed all tests

BootROMs/cgb_boot.asm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -981,10 +981,10 @@ GetPaletteIndex:
981981
.newLicensee
982982
ld l, LOW(NewLicenseeCode)
983983
ld a, [hli]
984-
cp "0"
984+
cp $30 ; ASCII '0'
985985
jr nz, .notNintendo
986986
ld a, [hl]
987-
cp "1"
987+
cp $31 ; ASCII '1'
988988
jr nz, .notNintendo
989989

990990
.doChecksum

0 commit comments

Comments
 (0)