diff options
author | 2011-08-02 15:09:21 +0000 | |
---|---|---|
committer | 2011-08-02 15:09:21 +0000 | |
commit | 3bdfb55b35f4aa44d53f181a423dfa81c264230b (patch) | |
tree | 4c0f162f8eb66c9cf7d304494683613bc5863e49 /src/emu/machine/ldpr8210.c | |
parent | b368e07f95745df85e62227f7068803aada45170 (diff) |
- Updated romload so devices are loaded from separate files [Miodrag Milanovic]
- Removed LOADBYNAME, since it is deprecated by using per device rom load_software_part_region
- Created makedev tool to generate array of devices, and created lst file according to current devices usage.
- Changed listxml command to output device roms too
Diffstat (limited to 'src/emu/machine/ldpr8210.c')
-rw-r--r-- | src/emu/machine/ldpr8210.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/emu/machine/ldpr8210.c b/src/emu/machine/ldpr8210.c index 2ade4addae8..00f05bbef9d 100644 --- a/src/emu/machine/ldpr8210.c +++ b/src/emu/machine/ldpr8210.c @@ -292,7 +292,7 @@ MACHINE_CONFIG_END ROM_START( pr8210 ) - ROM_REGION( 0x800, "pr8210", ROMREGION_LOADBYNAME ) + ROM_REGION( 0x800, "pr8210", 0 ) ROM_LOAD( "pr-8210_mcu_ud6005a.bin", 0x000, 0x800, CRC(120fa83b) SHA1(b514326ca1f52d6d89056868f9d17eabd4e3f31d) ) ROM_END @@ -1005,10 +1005,10 @@ MACHINE_CONFIG_END ROM_START( simutrek ) - ROM_REGION( 0x800, "pr8210", ROMREGION_LOADBYNAME ) + ROM_REGION( 0x800, "pr8210", 0 ) ROM_LOAD( "pr-8210_mcu_ud6005a.bin", 0x000, 0x800, CRC(120fa83b) SHA1(b514326ca1f52d6d89056868f9d17eabd4e3f31d) ) - ROM_REGION( 0x400, "simutrek", ROMREGION_LOADBYNAME) + ROM_REGION( 0x400, "simutrek", 0) ROM_LOAD( "laser_player_interface_d8748_a308.bin", 0x0000, 0x0400, CRC(eed3e728) SHA1(1eb3467f1c41553375b2c21952cd593b167f5416) ) ROM_END |