Previous 199869 Revisions Next

r32847 Monday 20th October, 2014 at 20:12:30 UTC by Fabio Priuli
Merge branch 'master' of https://github.com/mamedev/mame
[src/mess]mess.lst
[src/mess/drivers]msx.c

trunk/src/mess/drivers/msx.c
r241358r241359
6363** - perfect1: Firmware broken
6464** - mpc2500f: Fix keyboard layout?
6565** - nms8260: HDD not emulated
66** - nms8270: MSX-Audio not emulated
6766** - mpc27: Light pen not emulated
6867** - phc77: firmware not emulated
6968** - phc77: printer not emulated
r241358r241359
216215Philips NMS-8255 - MSX2 - nms8255
217216Philips NMS-8255F - MSX2 - nms8255f
218217Philips NMS-8260 - MSX2 - nms8260
219Philips NMS-8270 - MSX2 - nms8270
218Philips NMS-8270 - MSX2 - nms8270 - not confirmed to exist yet
220219Philips NMS-8280 - MSX2 - nms8280
221220Philips NMS-8280F - MSX2 - nms8280f
222221Philips NMS-8280G - MSX2 - nms8280g
r241358r241359
57415740   MCFG_FRAGMENT_ADD( msx2_cartlist )
57425741MACHINE_CONFIG_END
57435742
5744/* MSX2 - Philips NMS-8270 */
5743/* MSX2 - Philips NMS-8270 - Not confirmed to exist yet */
57455744
5746ROM_START (nms8270)
5747   ROM_REGION (0x18000, "maincpu", 0)
5748   ROM_LOAD ("nms8270bios.rom",   0x0000, 0x8000, CRC(6cdaf3a5) SHA1(6103b39f1e38d1aa2d84b1c3219c44f1abb5436e))
5749   ROM_LOAD ("nms8270ext.rom",    0x8000, 0x4000, CRC(66237ecf) SHA1(5c1f9c7fb655e43d38e5dd1fcc6b942b2ff68b02))
5750   ROM_LOAD ("nms8270disk.rom",   0xc000, 0x4000, CRC(ca3307d3) SHA1(c3efedda7ab947a06d9345f7b8261076fa7ceeef))
5751   ROM_LOAD ("nms8270audio.rom", 0x10000, 0x8000, CRC(d8a17006) SHA1(f081a884505af9a1080b2b57e86b6da93b784301))
5752ROM_END
5753
5754static MACHINE_CONFIG_DERIVED( nms8270, msx2_pal )
5755   // YM2149 (in S-3527 MSX Engine)
5756   // FDC: wd2793, 1 3.5" DSDD drives
5757   // 2 Cartridge slots
5758   // S-3527 MSX Engine
5759   // MSX-Audio builtin
5760
5761   MCFG_MSX_LAYOUT_ROM("bios", 0, 0, 0, 2, "maincpu", 0x0000)
5762   MCFG_MSX_LAYOUT_CARTRIDGE("cartslot1", 1, 0)
5763   MCFG_MSX_LAYOUT_CARTRIDGE("cartslot2", 2, 0)
5764   MCFG_MSX_LAYOUT_ROM("ext", 3, 0, 0, 1, "maincpu", 0x8000)
5765   MCFG_MSX_LAYOUT_ROM("msxaudio", 3, 1, 1, 2, "maincpu", 0x10000)
5766   MCFG_MSX_LAYOUT_RAM_MM("ram_mm", 3, 2, 0x20000)   /* 128KB Mapper RAM */
5767   MCFG_MSX_RAMIO_SET_BITS(0xf8)
5768   MCFG_MSX_LAYOUT_DISK1("disk", 3, 3, 1, 1, "maincpu", 0xc000)
5769
5770   MCFG_FRAGMENT_ADD( msx_wd2793_force_ready )
5771   MCFG_FRAGMENT_ADD( msx_1_35_dd_drive )
5772   MCFG_FRAGMENT_ADD( msx2_floplist )
5773
5774   MCFG_FRAGMENT_ADD( msx2_cartlist )
5775MACHINE_CONFIG_END
5776
57775745/* MSX2 - Philips NMS-8280 - 2 possible sets (/00 /16) */
57785746
57795747ROM_START (nms8280)
r241358r241359
83588326COMP(1986, nms8255,    0,        0, nms8255,    msx2,     driver_device, 0, "Philips", "NMS-8255 (MSX2)", 0)
83598327COMP(1986, nms8255f,   nms8255,  0, nms8255f,   msx2,     driver_device, 0, "Philips", "NMS-8255F (MSX2)", 0) // French keyboard
83608328COMP(1986, nms8260,    0,        0, nms8260,    msx2,     driver_device, 0, "Philips", "NMS-8260 (Prototype) (MSX2)", GAME_NOT_WORKING)
8361COMP(198?, nms8270,    0,        0, nms8270,    msx2,     driver_device, 0, "Philips", "NMS-8270 (Prototype) (MSX2)", GAME_NOT_WORKING)
83628329COMP(1986, nms8280,    0,        0, nms8280,    msx2,     driver_device, 0, "Philips", "NMS-8280 (MSX2)", 0)
83638330COMP(1986, nms8280f,   nms8280,  0, nms8280f,   msx2,     driver_device, 0, "Philips", "NMS-8280F (MSX2)", 0) // French keyboard
83648331COMP(1986, nms8280g,   nms8280,  0, nms8280g,   msx2,     driver_device, 0, "Philips", "NMS-8280G (MSX2)", 0)
trunk/src/mess/mess.lst
r241358r241359
15061506nms8255   // 1986 MSX2
15071507nms8255f
15081508nms8260
1509nms8270
15101509nms8280   // 1986 MSX2
15111510nms8280f
15121511nms8280g   // 1986 MSX2


Previous 199869 Revisions Next


© 1997-2024 The MAME Team