From 4c1b55d2e8396ea3d0db941181dfe61f045432fe Mon Sep 17 00:00:00 2001 From: UltiNaruto Date: Sat, 13 May 2023 20:47:38 +0200 Subject: [PATCH] More pitfall games to support Added support for Pitfall The Lost Expedition PAL v1.0 Added support for Pitfall The Lost Expedition DE v1.0 Added support for Pitfall The Big Adventure NTSC-U v1.0 Added support for Pitfall The Big Adventure PAL v1.0 --- README.md | 3 ++- source/modules/games/GPHD52-0.lua | 5 +++++ source/modules/games/GPHP52-0.lua | 5 +++++ source/modules/games/RPFE52-0.lua | 5 +++++ source/modules/games/RPFP52-0.lua | 5 +++++ 5 files changed, 22 insertions(+), 1 deletion(-) create mode 100644 source/modules/games/GPHD52-0.lua create mode 100644 source/modules/games/GPHP52-0.lua create mode 100644 source/modules/games/RPFE52-0.lua create mode 100644 source/modules/games/RPFP52-0.lua diff --git a/README.md b/README.md index f506581..ef30a1c 100644 --- a/README.md +++ b/README.md @@ -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 @@ -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: diff --git a/source/modules/games/GPHD52-0.lua b/source/modules/games/GPHD52-0.lua new file mode 100644 index 0000000..ed3001d --- /dev/null +++ b/source/modules/games/GPHD52-0.lua @@ -0,0 +1,5 @@ +-- Pitfall The Lost Expedition (DE v1.0) + +local core = require("games.core") + +return core.newGame(0x80423428) \ No newline at end of file diff --git a/source/modules/games/GPHP52-0.lua b/source/modules/games/GPHP52-0.lua new file mode 100644 index 0000000..8e56103 --- /dev/null +++ b/source/modules/games/GPHP52-0.lua @@ -0,0 +1,5 @@ +-- Pitfall The Lost Expedition (PAL v1.0) + +local core = require("games.core") + +return core.newGame(0x804233E8) \ No newline at end of file diff --git a/source/modules/games/RPFE52-0.lua b/source/modules/games/RPFE52-0.lua new file mode 100644 index 0000000..8e81308 --- /dev/null +++ b/source/modules/games/RPFE52-0.lua @@ -0,0 +1,5 @@ +-- Pitfall The Big Adventure (NTSC v1.0) + +local core = require("games.core") + +return core.newGame(0x80456CA0) \ No newline at end of file diff --git a/source/modules/games/RPFP52-0.lua b/source/modules/games/RPFP52-0.lua new file mode 100644 index 0000000..7d0e910 --- /dev/null +++ b/source/modules/games/RPFP52-0.lua @@ -0,0 +1,5 @@ +-- Pitfall The Big Adventure (PAL v1.0) + +local core = require("games.core") + +return core.newGame(0x804570A0) \ No newline at end of file