mirror of
https://github.com/holub/mame
synced 2025-04-22 16:31:49 +03:00
abc80x: Downgrade video status. (nw)
This commit is contained in:
parent
036a3a5f74
commit
53e83823d4
@ -141,6 +141,7 @@ Notes:
|
||||
|
||||
TODO:
|
||||
|
||||
- option ROM/HR video RAM access needs refactor of memory banking
|
||||
- cassette
|
||||
- abc806 RTC
|
||||
- abc806 disks except ufd631 won't boot
|
||||
@ -1576,35 +1577,12 @@ ROM_END
|
||||
|
||||
|
||||
|
||||
//**************************************************************************
|
||||
// DRIVER INITIALIZATION
|
||||
//**************************************************************************
|
||||
|
||||
|
||||
DRIVER_INIT_MEMBER(abc800c_state,driver_init)
|
||||
{
|
||||
}
|
||||
|
||||
DRIVER_INIT_MEMBER(abc800m_state,driver_init)
|
||||
{
|
||||
}
|
||||
|
||||
DRIVER_INIT_MEMBER(abc802_state,driver_init)
|
||||
{
|
||||
}
|
||||
|
||||
DRIVER_INIT_MEMBER(abc806_state,driver_init)
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
|
||||
//**************************************************************************
|
||||
// SYSTEM DRIVERS
|
||||
//**************************************************************************
|
||||
|
||||
// YEAR NAME PARENT COMPAT MACHINE INPUT INIT COMPANY FULLNAME FLAGS
|
||||
COMP( 1981, abc800c, 0, 0, abc800c, abc800, abc800c_state, driver_init, "Luxor Datorer AB", "ABC 800 C/HR", MACHINE_SUPPORTS_SAVE )
|
||||
COMP( 1981, abc800m, abc800c, 0, abc800m, abc800, abc800m_state, driver_init, "Luxor Datorer AB", "ABC 800 M/HR", MACHINE_SUPPORTS_SAVE )
|
||||
COMP( 1983, abc802, 0, 0, abc802, abc802, abc802_state, driver_init, "Luxor Datorer AB", "ABC 802", MACHINE_SUPPORTS_SAVE )
|
||||
COMP( 1983, abc806, 0, 0, abc806, abc806, abc806_state, driver_init, "Luxor Datorer AB", "ABC 806", MACHINE_SUPPORTS_SAVE )
|
||||
COMP( 1981, abc800c, 0, 0, abc800c, abc800, driver_device, 0, "Luxor Datorer AB", "ABC 800 C/HR", MACHINE_IMPERFECT_GRAPHICS | MACHINE_SUPPORTS_SAVE )
|
||||
COMP( 1981, abc800m, abc800c, 0, abc800m, abc800, driver_device, 0, "Luxor Datorer AB", "ABC 800 M/HR", MACHINE_IMPERFECT_GRAPHICS | MACHINE_SUPPORTS_SAVE )
|
||||
COMP( 1983, abc802, 0, 0, abc802, abc802, driver_device, 0, "Luxor Datorer AB", "ABC 802", MACHINE_IMPERFECT_GRAPHICS | MACHINE_SUPPORTS_SAVE )
|
||||
COMP( 1983, abc806, 0, 0, abc806, abc806, driver_device, 0, "Luxor Datorer AB", "ABC 806", MACHINE_IMPERFECT_GRAPHICS | MACHINE_SUPPORTS_SAVE )
|
||||
|
@ -171,8 +171,6 @@ public:
|
||||
required_memory_region m_fgctl_prom;
|
||||
required_memory_region m_char_rom;
|
||||
|
||||
DECLARE_DRIVER_INIT(driver_init);
|
||||
|
||||
uint32_t screen_update(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect);
|
||||
|
||||
void hr_update(bitmap_rgb32 &bitmap, const rectangle &cliprect);
|
||||
@ -197,8 +195,6 @@ public:
|
||||
required_device<palette_device> m_palette;
|
||||
required_memory_region m_fgctl_prom;
|
||||
|
||||
DECLARE_DRIVER_INIT(driver_init);
|
||||
|
||||
uint32_t screen_update(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect);
|
||||
|
||||
offs_t translate_trom_offset(offs_t offset);
|
||||
@ -227,7 +223,6 @@ public:
|
||||
required_memory_region m_char_rom;
|
||||
required_ioport m_config;
|
||||
|
||||
DECLARE_DRIVER_INIT(driver_init);
|
||||
virtual void machine_start() override;
|
||||
virtual void machine_reset() override;
|
||||
|
||||
@ -276,7 +271,6 @@ public:
|
||||
required_memory_region m_char_rom;
|
||||
optional_shared_ptr<uint8_t> m_attr_ram;
|
||||
|
||||
DECLARE_DRIVER_INIT(driver_init);
|
||||
virtual void machine_start() override;
|
||||
virtual void machine_reset() override;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user