Skip to content

Commit

Permalink
Merge pull request #146 from HDBSD/master
Browse files Browse the repository at this point in the history
Added support for various games and versions
  • Loading branch information
bkacjios authored Jun 11, 2022
2 parents ab55ab2 + c6c88cd commit 1410916
Show file tree
Hide file tree
Showing 10 changed files with 49 additions and 1 deletion.
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,10 @@
* Super Monkey Ball 2 (NTSC-U v1.0)
- Super Monkey Ball Gaiden
* Rayman 3: Hoodlum Havoc (NTSC-U v1.0)
* Scooby-Doo: Night of 100 Frights (NTSC-U v1.0)
* Scaler (NTSC-U V1.0)
* Scooby-Doo: Night of 100 Frights (NTSC-U v1.0, NTSC-U v1.1, PAL-En, PAL-Fr, Pal-Ger)
* Scooby-Doo! - Unmasked (NTSC-U v1.0, PAL v1.0)
* Scooby-Doo! - Mystery Mayhem (NTSC-U v1.0, PAL v1.0)
* Smuggler's Run - Warzones (NTSC-U v1.0)
* Sonic Adventure 2: Battle (NTSC-U v1.0)
* SpongeBob SquarePants: Battle for Bikini Bottom (NTSC-U v1.0)
Expand Down
5 changes: 5 additions & 0 deletions source/modules/games/G5DE78-0.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
-- Scooby-Doo! Unmasked (NTSC-U)

local core = require("games.core")

return core.newGame(0x8023380C)
5 changes: 5 additions & 0 deletions source/modules/games/G5DP78-0.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
-- Scooby-Doo! Unmasked (Europe) (En,Fr) (PAL v1.0)

local core = require("games.core")

return core.newGame(0x8023380C)
5 changes: 5 additions & 0 deletions source/modules/games/GC3E78-0.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
-- Scooby-Doo! Mystery Mayhem (NTSC-U v1.0)

local core = require("games.core")

return core.newGame(0x801E5118)
5 changes: 5 additions & 0 deletions source/modules/games/GC3P78-0.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
-- Scooby-Doo! Mystery Mayhem (PAL-En v1.0)

local core = require("games.core")

return core.newGame(0x801E5118)
5 changes: 5 additions & 0 deletions source/modules/games/GIHD78-0.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
-- Scooby-Doo! Night of 100 Frights (PAL-Ger v1.0)

local core = require("games.core")

return core.newGame(0x801C0740)
5 changes: 5 additions & 0 deletions source/modules/games/GIHE78-1.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
-- Scooby-Doo! Night of 100 Frights (NTSC-U v1.1)

local core = require("games.core")

return core.newGame(0x801BBE00)
5 changes: 5 additions & 0 deletions source/modules/games/GIHF78-0.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
-- Scooby-Doo! Night of 100 Frights (PAL-Fr v1.0)

local core = require("games.core")

return core.newGame(0x801C7EC0)
5 changes: 5 additions & 0 deletions source/modules/games/GIHP78-0.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
-- Scooby-Doo! Night of 100 Frights (PAL-En v1.0)

local core = require("games.core")

return core.newGame(0x801C8000)
5 changes: 5 additions & 0 deletions source/modules/games/GKUE9G-0.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
-- Scaler (NTSC-U v1.0)

local core = require("games.core")

return core.newGame(0x802994CC)

0 comments on commit 1410916

Please sign in to comment.