mirror of
https://github.com/mamedev/mame.git
synced 2024-11-16 07:48:32 +01:00
sparclite: update_addr_masks after loadstate
This commit is contained in:
parent
0de9763ea3
commit
0294643837
2 changed files with 9 additions and 0 deletions
|
@ -1050,6 +1050,13 @@ void sparc_base_device::device_post_load()
|
|||
update_gpr_pointers();
|
||||
}
|
||||
|
||||
void mb86930_device::device_post_load()
|
||||
{
|
||||
sparc_base_device::device_post_load();
|
||||
|
||||
update_addr_masks();
|
||||
}
|
||||
|
||||
|
||||
//-------------------------------------------------
|
||||
// memory_space_config - return the configuration
|
||||
|
|
|
@ -342,8 +342,10 @@ public:
|
|||
auto cs5_write_cb() { return m_cs_w[5].bind(); }
|
||||
|
||||
protected:
|
||||
// device-level overrides
|
||||
virtual void device_start() override;
|
||||
virtual void device_reset() override;
|
||||
virtual void device_post_load() override;
|
||||
|
||||
virtual bool execute_extra_group2(uint32_t op) override;
|
||||
|
||||
|
|
Loading…
Reference in a new issue