mirror of
https://github.com/holub/mame
synced 2025-10-05 08:41:31 +03:00
(MESS) msx.c: Some small fixes (nw)
This commit is contained in:
parent
1941c1ab0d
commit
f0267388e4
@ -76,6 +76,9 @@ public:
|
||||
msx_slot_yamaha_expansion_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
|
||||
|
||||
virtual void device_start();
|
||||
virtual void device_config_complete() { update_names(MSX_SLOT_YAMAHA_EXPANSION, "cartridge60pin", "cart60p"); }
|
||||
|
||||
virtual const char *image_interface() const { return "msx_yamaha_60pin"; }
|
||||
};
|
||||
|
||||
|
||||
|
@ -4062,7 +4062,7 @@ static MACHINE_CONFIG_DERIVED( cx5f1, msx_ntsc )
|
||||
|
||||
MCFG_MSX_LAYOUT_ROM("bios", 0, 0, 0, 2, "maincpu", 0x0000)
|
||||
MCFG_MSX_LAYOUT_RAM("ram", 0, 0, 2, 2) // 32KB RAM
|
||||
MCFG_MSX_LAYOUT_CARTRIDGE("cartslot1", 1, 0)
|
||||
MCFG_MSX_LAYOUT_CARTRIDGE("cartslot", 1, 0)
|
||||
MCFG_MSX_LAYOUT_YAMAHA_EXPANSION("expansion", 2, 0, "sfg01")
|
||||
|
||||
MCFG_FRAGMENT_ADD( msx1_cartlist )
|
||||
@ -4480,8 +4480,8 @@ static MACHINE_CONFIG_DERIVED( canonv30, msx2 )
|
||||
// S-1985 MSX Engine
|
||||
|
||||
MCFG_MSX_LAYOUT_ROM("bios", 0, 0, 0, 2, "maincpu", 0x0000) // BIOS
|
||||
MCFG_MSX_LAYOUT_CARTRIDGE("cartridge1", 1, 0)
|
||||
MCFG_MSX_LAYOUT_CARTRIDGE("cartridge2", 2, 0)
|
||||
MCFG_MSX_LAYOUT_CARTRIDGE("cartslot1", 1, 0)
|
||||
MCFG_MSX_LAYOUT_CARTRIDGE("cartslot2", 2, 0)
|
||||
MCFG_MSX_LAYOUT_ROM("ext", 3, 0, 0, 1, "maincpu", 0x8000) // EXT
|
||||
MCFG_MSX_LAYOUT_DISK1("disk", 3, 1, 1, 1, "maincpu", 0xc000) // DISK
|
||||
MCFG_MSX_LAYOUT_RAM_MM("ram_mm", 3, 2, 0x10000) // 64KB?? Mapper RAM
|
||||
|
Loading…
Reference in New Issue
Block a user