mirror of
https://github.com/libretro/Genesis-Plus-GX.git
synced 2025-02-20 17:20:32 +00:00
Merge pull request #255 from pjft/asteborg
Add preliminary support for Demons of Asteborg
This commit is contained in:
commit
29686accba
@ -599,6 +599,14 @@ void md_cart_init(void)
|
||||
/* cartridge ROM mapping is reinitialized on /VRES */
|
||||
cart.hw.bankshift = 1;
|
||||
}
|
||||
else if (strstr(rominfo.domestic,"DEMONS OF ASTEBORG"))
|
||||
{
|
||||
/* Demons of Asteborg uses the SSF2 mapper */
|
||||
cart.hw.time_w = mapper_ssf2_w;
|
||||
|
||||
/* cartridge ROM mapping is reinitialized on /VRES */
|
||||
cart.hw.bankshift = 1;
|
||||
}
|
||||
else if (strstr(rominfo.product,"T-5740"))
|
||||
{
|
||||
/* T-5740XX-XX mapper */
|
||||
|
@ -41,7 +41,7 @@
|
||||
#define _LOADROM_H_
|
||||
|
||||
#ifndef MAXROMSIZE
|
||||
#define MAXROMSIZE 10485760
|
||||
#define MAXROMSIZE 33554432
|
||||
#endif
|
||||
|
||||
typedef struct
|
||||
|
Loading…
x
Reference in New Issue
Block a user