trunk/hash/px4_cart.xml
| r0 | r18812 | |
| 1 | <?xml version="1.0"?> |
| 2 | <!DOCTYPE softwarelist SYSTEM "softwarelist.dtd"> |
| 3 | |
| 4 | <softwarelist name="px4_cart" description="EPSON PX-4 ROM capsules"> |
| 5 | |
| 6 | <software name="basic"> |
| 7 | <description>PX-4 BASIC</description> |
| 8 | <year>198x</year> |
| 9 | <publisher>EPSON</publisher> |
| 10 | <part name="cart" interface="px4_cart"> |
| 11 | <dataarea name="rom" size="32768"> |
| 12 | <rom name="m25126aa.bin" size="32768" crc="f76f1c12" sha1="d7dc90ecd158012c0a54626b8bf962255bfd1b27" offset="0" /> |
| 13 | </dataarea> |
| 14 | </part> |
| 15 | </software> |
| 16 | |
| 17 | <software name="utils"> |
| 18 | <description>PX-4 Utilities</description> |
| 19 | <year>198x</year> |
| 20 | <publisher>EPSON</publisher> |
| 21 | <part name="cart" interface="px4_cart"> |
| 22 | <dataarea name="rom" size="32768"> |
| 23 | <rom name="m25124aa.bin" size="32768" crc="beabb0de" sha1="1c7bbda68635d2ee641fdfd7c08047f54caf4eb4" offset="0" /> |
| 24 | </dataarea> |
| 25 | </part> |
| 26 | </software> |
| 27 | |
| 28 | </softwarelist> |
trunk/src/mess/drivers/px4.c
| r18811 | r18812 | |
| 1325 | 1325 | // external cassette |
| 1326 | 1326 | MCFG_CASSETTE_ADD("extcas", px4_cassette_interface) |
| 1327 | 1327 | |
| 1328 | // sio port |
| 1329 | MCFG_EPSON_SIO_ADD("sio") |
| 1330 | |
| 1328 | 1331 | // rom capsules |
| 1329 | 1332 | MCFG_CARTSLOT_ADD("capsule1") |
| 1333 | MCFG_CARTSLOT_EXTENSION_LIST("bin") |
| 1334 | MCFG_CARTSLOT_INTERFACE("px4_cart") |
| 1330 | 1335 | MCFG_CARTSLOT_NOT_MANDATORY |
| 1336 | |
| 1331 | 1337 | MCFG_CARTSLOT_ADD("capsule2") |
| 1338 | MCFG_CARTSLOT_EXTENSION_LIST("bin") |
| 1339 | MCFG_CARTSLOT_INTERFACE("px4_cart") |
| 1332 | 1340 | MCFG_CARTSLOT_NOT_MANDATORY |
| 1333 | 1341 | |
| 1334 | | // sio port |
| 1335 | | MCFG_EPSON_SIO_ADD("sio") |
| 1342 | // software list |
| 1343 | MCFG_SOFTWARE_LIST_ADD("cart_list", "px4_cart") |
| 1336 | 1344 | MACHINE_CONFIG_END |
| 1337 | 1345 | |
| 1338 | 1346 | static MACHINE_CONFIG_DERIVED( px4p, px4 ) |