Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
bkacjios committed May 16, 2023
2 parents 6107ffc + 34109f1 commit df50d9b
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 1 deletion.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@
* Pikmin (NTSC-U v1.0, NTSC-U v1.1)
* Pikmin 2 (NTSC-U v1.0, DEMO v1.0)
- [Pikmin 251](https://www.youtube.com/watch?v=7ylu9ogW88w)
* Pitfall The Lost Expedition (NTSC-U v1.0, FR v1.0)
* Pitfall The Lost Expedition (NTSC-U v1.0, FR v1.0, PAL v1.0, DE v1.0)
* Super Monkey Ball (NTSC-U v1.0, NTSC-J v1.2, PAL v1.0)
* Super Monkey Ball 2 (NTSC-U v1.0)
- Super Monkey Ball Gaiden
Expand All @@ -105,6 +105,7 @@
- [Project M](https://en.wikipedia.org/wiki/Project_M)
- [P+](https://projectplusgame.com/)
* Mario Kart Wii (NTSC-U v1.0)
* Pitfall The Big Adventure (NTSC-U v1.0, PAL v1.0)
* The Legend of Zelda: Twilight Princess (NTSC-U v1.0)

### Supported VC games:
Expand Down
5 changes: 5 additions & 0 deletions source/modules/games/GPHD52-0.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
-- Pitfall The Lost Expedition (DE v1.0)

local core = require("games.core")

return core.newGame(0x80423428)
5 changes: 5 additions & 0 deletions source/modules/games/GPHP52-0.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
-- Pitfall The Lost Expedition (PAL v1.0)

local core = require("games.core")

return core.newGame(0x804233E8)
5 changes: 5 additions & 0 deletions source/modules/games/RPFE52-0.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
-- Pitfall The Big Adventure (NTSC v1.0)

local core = require("games.core")

return core.newGame(0x80456CA0)
5 changes: 5 additions & 0 deletions source/modules/games/RPFP52-0.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
-- Pitfall The Big Adventure (PAL v1.0)

local core = require("games.core")

return core.newGame(0x804570A0)

0 comments on commit df50d9b

Please sign in to comment.