mirror of
https://github.com/holub/mame
synced 2025-04-26 02:07:14 +03:00
Lucky Ball 96: Changes to the memory map and banking
after an exhaustive hardware analysis. [Grull Osgo]
This commit is contained in:
parent
40ff8a384e
commit
30efff8c13
@ -262,7 +262,7 @@
|
||||
*********************************************************************/
|
||||
|
||||
|
||||
#define CPU_CLOCK XTAL(12'000'000)
|
||||
#define CPU_CLOCK XTAL(12'000'000) // 12MHz. from schematics.
|
||||
#define MCU_CLOCK XTAL(8'000'000)
|
||||
#define VID_CLOCK XTAL(21'477'272)
|
||||
|
||||
@ -340,10 +340,7 @@ private:
|
||||
|
||||
void luckybal_state::main_map(address_map &map)
|
||||
{
|
||||
map(0x0000, 0x57ff).rom();
|
||||
map(0x6000, 0x7fff).bankr("bank1"); // Banked ROM.
|
||||
map(0x8000, 0x9fff).bankr("bank1"); // Banked ROM.
|
||||
map(0xa000, 0xbfff).bankr("bank1"); // Banked ROM.
|
||||
map(0x0000, 0xbfff).rom();
|
||||
map(0xc000, 0xdfff).bankr("bank1"); // Banked ROM.
|
||||
map(0xe000, 0xffff).ram().share("nvram"); // 6264 SRAM
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user