mirror of
https://github.com/mamedev/mame.git
synced 2024-11-16 07:48:32 +01:00
(MESS) c8280: Added good ROM set, tries to load from disk now but no images available. (nw)
This commit is contained in:
parent
83c102fbdf
commit
fe54c26fd9
1 changed files with 11 additions and 13 deletions
|
@ -7,14 +7,6 @@
|
|||
|
||||
**********************************************************************/
|
||||
|
||||
/*
|
||||
|
||||
TODO:
|
||||
|
||||
- FDC CPU ROM is line swapped/bad dump?
|
||||
|
||||
*/
|
||||
|
||||
#include "c8280.h"
|
||||
|
||||
|
||||
|
@ -53,11 +45,17 @@ const device_type C8280 = &device_creator<c8280_device>;
|
|||
|
||||
ROM_START( c8280 )
|
||||
ROM_REGION( 0x4000, M6502_DOS_TAG, 0 )
|
||||
ROM_LOAD( "300542-001.10c", 0x0000, 0x2000, CRC(3c6eee1e) SHA1(0726f6ab4de4fc9c18707fe87780ffd9f5ed72ab) )
|
||||
ROM_LOAD( "300543-001.10d", 0x2000, 0x2000, CRC(f58e665e) SHA1(9e58b47c686c91efc6ef1a27f72dbb5e26c485ec) )
|
||||
ROM_DEFAULT_BIOS("r2")
|
||||
ROM_SYSTEM_BIOS( 0, "r1", "Revision 1" )
|
||||
ROMX_LOAD( "300542-001.10c", 0x0000, 0x2000, CRC(3c6eee1e) SHA1(0726f6ab4de4fc9c18707fe87780ffd9f5ed72ab), ROM_BIOS(1) )
|
||||
ROMX_LOAD( "300543-001.10d", 0x2000, 0x2000, CRC(f58e665e) SHA1(9e58b47c686c91efc6ef1a27f72dbb5e26c485ec), ROM_BIOS(1) )
|
||||
ROM_SYSTEM_BIOS( 1, "r2", "Revision 2" )
|
||||
ROMX_LOAD( "300542-reva.10c", 0x0000, 0x2000, CRC(6f32ccfb) SHA1(6926c049f1635e6769ec69891de8c92941ff880e), ROM_BIOS(2) )
|
||||
ROMX_LOAD( "300543-reva.10d", 0x2000, 0x2000, CRC(1af93f2c) SHA1(ad197b1d5dfa273487b33f473403ebd20dd15b2b), ROM_BIOS(2) )
|
||||
|
||||
ROM_REGION( 0x800, M6502_FDC_TAG, 0 )
|
||||
ROM_LOAD( "300541-001.3c", 0x000, 0x800, CRC(cb07b2db) SHA1(a1f9c5a7bd3798f5a97dc0b465c3bf5e3513e148) )
|
||||
ROMX_LOAD( "300541-001.3c", 0x000, 0x800, BAD_DUMP CRC(cb07b2db) SHA1(a1f9c5a7bd3798f5a97dc0b465c3bf5e3513e148), ROM_BIOS(1) )
|
||||
ROMX_LOAD( "300541-revb.3c", 0x000, 0x800, CRC(403e632c) SHA1(a0994c80025240d2b49ffd209dbfe8a4de3975b0), ROM_BIOS(2) )
|
||||
ROM_END
|
||||
|
||||
|
||||
|
@ -94,8 +92,8 @@ ADDRESS_MAP_END
|
|||
|
||||
static ADDRESS_MAP_START( c8280_fdc_mem, AS_PROGRAM, 8, c8280_device )
|
||||
ADDRESS_MAP_GLOBAL_MASK(0x1fff)
|
||||
AM_RANGE(0x0000, 0x007f) AM_MIRROR(0x380) AM_RAM
|
||||
AM_RANGE(0x0080, 0x0081) AM_MIRROR(0x7e) AM_DEVREADWRITE_LEGACY(WD1797_TAG, wd17xx_r, wd17xx_w)
|
||||
AM_RANGE(0x0000, 0x007f) AM_MIRROR(0x300) AM_RAM
|
||||
AM_RANGE(0x0080, 0x0081) AM_MIRROR(0x37e) AM_DEVREADWRITE_LEGACY(WD1797_TAG, wd17xx_r, wd17xx_w)
|
||||
AM_RANGE(0x0400, 0x07ff) AM_RAM AM_SHARE("share1")
|
||||
AM_RANGE(0x0800, 0x0bff) AM_RAM AM_SHARE("share2")
|
||||
AM_RANGE(0x0c00, 0x0fff) AM_RAM AM_SHARE("share3")
|
||||
|
|
Loading…
Reference in a new issue