mirror of
https://github.com/holub/mame
synced 2025-05-21 21:29:15 +03:00
v30mz.c: Make gcc behave like clang (nw)
This commit is contained in:
parent
41ff565a92
commit
06eb1d9b19
@ -536,7 +536,8 @@ inline void v30mz_cpu_device::PutImmRMWord()
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
write_word( get_ea(), fetch_word() );
|
UINT32 addr = get_ea();
|
||||||
|
write_word( addr, fetch_word() );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -574,7 +575,8 @@ inline void v30mz_cpu_device::PutImmRMByte()
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
write_byte( get_ea(), fetch() );
|
UINT32 addr = get_ea();
|
||||||
|
write_byte( addr, fetch() );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user