mirror of
https://github.com/holub/mame
synced 2025-06-21 19:56:53 +03:00
vf: More fixes, works even worse, it's getting annoying (nw)
This commit is contained in:
parent
95318ad835
commit
548f1cde7b
@ -107,6 +107,12 @@ template<typename T> void generic_fifo_device_base<T>::device_timer(emu_timer &t
|
||||
|
||||
template<typename T> T generic_fifo_device_base<T>::pop()
|
||||
{
|
||||
if(machine().side_effects_disabled()) {
|
||||
if(is_empty())
|
||||
return T();
|
||||
return m_values.front();
|
||||
}
|
||||
|
||||
// Are we empty?
|
||||
if(is_empty()) {
|
||||
// First, trigger the sync
|
||||
|
@ -1188,7 +1188,7 @@ ROM_START( vf )
|
||||
ROM_LOAD16_BYTE( "mpr-16091.13", 0x1300001, 0x80000, CRC(53115448) SHA1(af798d5b1fcb720d7288a5ac48839d9ace16a2f2) )
|
||||
|
||||
ROM_REGION32_LE( 0x2000, "tgp_copro", 0)
|
||||
ROM_LOAD("315-5724.bin", 0, 0x2000, CRC(50eb39d4) SHA1(e5411e80c95a6de16b4649cd01a7b8d8f99dc590) BAD_DUMP )
|
||||
ROM_LOAD("315-5724.bin", 0, 0x2000, CRC(a56d0cf9) SHA1(8280a52b9de76c3f06754206f9b7fe88c4673cc3) BAD_DUMP )
|
||||
|
||||
ROM_REGION( 0xc0000, M1AUDIO_CPU_REGION, ROMREGION_BE|ROMREGION_16BIT ) /* 68K code */
|
||||
ROM_LOAD16_WORD_SWAP( "epr-16120.7", 0x00000, 0x20000, CRC(2bff8378) SHA1(854b08ab983e4e98cb666f2f44de9a6829b1eb52) )
|
||||
|
Loading…
Reference in New Issue
Block a user