mirror of https://github.com/stella-emu/stella.git
fixed company name into Fotomania
This commit is contained in:
parent
2cf31c10ee
commit
8fd02dc8ad
|
@ -39,7 +39,7 @@
|
||||||
|
|
||||||
* Enhanced support for CDFJ+ bankswitching type.
|
* Enhanced support for CDFJ+ bankswitching type.
|
||||||
|
|
||||||
* Added 0FA0 bankswitching for Mania ROMs
|
* Added 0FA0 bankswitching for Fotomania ROMs
|
||||||
|
|
||||||
* Added ARM chip auto detection.
|
* Added ARM chip auto detection.
|
||||||
|
|
||||||
|
|
|
@ -5062,7 +5062,7 @@ Ms Pac-Man (Stella extended codes):
|
||||||
<table cellpadding="2" border="1">
|
<table cellpadding="2" border="1">
|
||||||
<tr><th> Type </th><th>Description</th><th>File Extension<br>(to force type)</th></tr>
|
<tr><th> Type </th><th>Description</th><th>File Extension<br>(to force type)</th></tr>
|
||||||
<tr><td>0840 </td><td>8K ECONObanking</td><td>.084, .0840</td></tr>
|
<tr><td>0840 </td><td>8K ECONObanking</td><td>.084, .0840</td></tr>
|
||||||
<tr><td>0FA0 </td><td>8K Mania</td><td>.0FA, .0FA0</td></tr>
|
<tr><td>0FA0 </td><td>8K Fotomania</td><td>.0FA, .0FA0</td></tr>
|
||||||
<tr><td>2IN1 ¹</td><td>4-64K Multicart (2 games)</td><td>.2N1 </td></tr>
|
<tr><td>2IN1 ¹</td><td>4-64K Multicart (2 games)</td><td>.2N1 </td></tr>
|
||||||
<tr><td>4IN1 ¹</td><td>8-64K Multicart (4 games)</td><td>.4N1 </td></tr>
|
<tr><td>4IN1 ¹</td><td>8-64K Multicart (4 games)</td><td>.4N1 </td></tr>
|
||||||
<tr><td>8IN1 ¹</td><td>16-64K Multicart (8 games)</td><td>.8N1 </td></tr>
|
<tr><td>8IN1 ¹</td><td>16-64K Multicart (8 games)</td><td>.8N1 </td></tr>
|
||||||
|
|
|
@ -32,7 +32,7 @@ class Cartridge0FA0Widget : public CartridgeEnhancedWidget
|
||||||
~Cartridge0FA0Widget() override = default;
|
~Cartridge0FA0Widget() override = default;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
string manufacturer() override { return "Mania"; }
|
string manufacturer() override { return "Fotomania"; }
|
||||||
|
|
||||||
string description() override;
|
string description() override;
|
||||||
|
|
||||||
|
|
|
@ -96,7 +96,7 @@ const std::array<Bankswitch::Description, static_cast<int>(Bankswitch::Type::Num
|
||||||
Bankswitch::BSList = {{
|
Bankswitch::BSList = {{
|
||||||
{ "AUTO" , "Auto-detect" },
|
{ "AUTO" , "Auto-detect" },
|
||||||
{ "0840" , "0840 (8K ECONObank)" },
|
{ "0840" , "0840 (8K ECONObank)" },
|
||||||
{ "0FA0" , "0FA0 (8K Mania)" },
|
{ "0FA0" , "0FA0 (8K Fotomania)" },
|
||||||
{ "2IN1" , "2IN1 Multicart (4-64K)" },
|
{ "2IN1" , "2IN1 Multicart (4-64K)" },
|
||||||
{ "4IN1" , "4IN1 Multicart (8-64K)" },
|
{ "4IN1" , "4IN1 Multicart (8-64K)" },
|
||||||
{ "8IN1" , "8IN1 Multicart (16-64K)" },
|
{ "8IN1" , "8IN1 Multicart (16-64K)" },
|
||||||
|
|
|
@ -349,7 +349,7 @@ bool CartDetector::isProbably0840(const ByteBuffer& image, size_t size)
|
||||||
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||||
bool CartDetector::isProbably0FA0(const ByteBuffer& image, size_t size)
|
bool CartDetector::isProbably0FA0(const ByteBuffer& image, size_t size)
|
||||||
{
|
{
|
||||||
// Other Brazilian (Atari Mania) ROM's bankswitching switches to bank 1 by
|
// Other Brazilian (Fotomania) ROM's bankswitching switches to bank 1 by
|
||||||
// accessing address 0xFC0 using 'BIT $FC0', 'BIT $FC0' or 'STA $FC0'
|
// accessing address 0xFC0 using 'BIT $FC0', 'BIT $FC0' or 'STA $FC0'
|
||||||
// Also a game (Motocross) using 'BIT $EFC0' has been found
|
// Also a game (Motocross) using 'BIT $EFC0' has been found
|
||||||
static constexpr uInt8 signature[4][3] = {
|
static constexpr uInt8 signature[4][3] = {
|
||||||
|
|
Loading…
Reference in New Issue