-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #146 from HDBSD/master
Added support for various games and versions
- Loading branch information
Showing
10 changed files
with
49 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |