trunk/src/emu/bus/isa/omti8621.c
| r31014 | r31015 | |
| 227 | 227 | |
| 228 | 228 | // this card has two EPROMs: a program for the on-board Z8 CPU, |
| 229 | 229 | // and a PC BIOS to make the card bootable on a PC. |
| 230 | | // we need both! |
| 230 | // we have the Z8 program, we still need the PC BIOS. |
| 231 | 231 | ROM_START( omti8621 ) |
| 232 | | ROM_REGION(0x1000, OMTI_CPU_REGION, 0) |
| 233 | | ROM_LOAD("omti_z8.bin", 0x0000, 0x1000, NO_DUMP) |
| 232 | ROM_REGION(0x4000, OMTI_CPU_REGION, 0) // disassembles fine as Z8 code |
| 233 | ROM_LOAD( "omti_8621_102640-b.bin", 0x000000, 0x004000, CRC(e6f20dbb) SHA1(cf1990ad72eac6b296485410f5fa3309a0d6d078) ) |
| 234 | 234 | |
| 235 | 235 | ROM_REGION(0x1000, OMTI_BIOS_REGION, 0) |
| 236 | 236 | ROM_LOAD("omti_bios", 0x0000, 0x1000, NO_DUMP) |