mirror of
https://github.com/holub/mame
synced 2025-07-05 09:57:47 +03:00
Erase to ff, *duh* (nw)
This commit is contained in:
parent
21af6ad0a8
commit
2685e8a74c
@ -834,7 +834,7 @@ void intelfsh_device::write_full(UINT32 address, UINT32 data)
|
||||
(( address & 0xfff ) == 0xaaa && ( data & 0xff ) == 0x10 ) )
|
||||
{
|
||||
// chip erase
|
||||
memset(&m_data[0], 0, m_size);
|
||||
memset(&m_data[0], 0xff, m_size);
|
||||
|
||||
m_status = 1 << 3;
|
||||
m_flash_mode = FM_ERASEAMD4;
|
||||
|
Loading…
Reference in New Issue
Block a user