mirror of
https://github.com/holub/mame
synced 2025-06-30 07:58:56 +03:00
fm16beta: Fix missing object error; reduce region size
This commit is contained in:
parent
cf486a7062
commit
0f94d65e13
@ -1430,7 +1430,7 @@ void fm11_state::fm11_x86_io(address_map &map)
|
||||
void fm7_state::fm16_mem(address_map &map)
|
||||
{
|
||||
map(0x00000, 0xfbfff).ram();
|
||||
map(0xfc000, 0xfffff).rom(); // IPL
|
||||
map(0xfc000, 0xfffff).rom().region("ipl", 0); // IPL
|
||||
}
|
||||
|
||||
void fm7_state::fm16_io(address_map &map)
|
||||
@ -2275,8 +2275,8 @@ ROM_START( fm11 )
|
||||
ROM_END
|
||||
|
||||
ROM_START( fm16beta )
|
||||
ROM_REGION( 0x100000, "maincpu", 0 )
|
||||
ROM_LOAD( "ipl.rom", 0xfc000, 0x4000, CRC(25f618ea) SHA1(9c27d6ad283260e071d64a1bfca16f7d3ad61f96) )
|
||||
ROM_REGION16_LE( 0x4000, "ipl", 0 )
|
||||
ROM_LOAD( "ipl.rom", 0x0000, 0x4000, CRC(25f618ea) SHA1(9c27d6ad283260e071d64a1bfca16f7d3ad61f96) )
|
||||
|
||||
// ROM_REGION( 0x10000, "subsys", 0 )
|
||||
|
||||
|
@ -207,7 +207,7 @@ protected:
|
||||
|
||||
optional_shared_ptr<uint8_t> m_shared_ram;
|
||||
optional_shared_ptr<uint8_t> m_a15_ram;
|
||||
required_shared_ptr<uint8_t> m_vectors;
|
||||
optional_shared_ptr<uint8_t> m_vectors;
|
||||
|
||||
uint8_t m_irq_flags;
|
||||
uint8_t m_irq_mask;
|
||||
|
Loading…
Reference in New Issue
Block a user