mirror of
https://github.com/holub/mame
synced 2025-04-22 16:31:49 +03:00
(MESS) fp1100.c: Fix regression (nw)
This commit is contained in:
parent
4916f13f47
commit
baea9711ab
@ -60,6 +60,7 @@ public:
|
||||
DECLARE_READ8_MEMBER(main_to_sub_r);
|
||||
DECLARE_WRITE8_MEMBER(sub_to_main_w);
|
||||
DECLARE_WRITE8_MEMBER(portc_w);
|
||||
MC6845_UPDATE_ROW(fp1100_update_row);
|
||||
UINT8 *m_wram;
|
||||
required_shared_ptr<UINT8> m_p_videoram;
|
||||
UINT8 m_mem_bank;
|
||||
@ -87,6 +88,10 @@ void fp1100_state::video_start()
|
||||
{
|
||||
}
|
||||
|
||||
MC6845_UPDATE_ROW( fp1100_state::fp1100_update_row )
|
||||
{
|
||||
}
|
||||
|
||||
READ8_MEMBER( fp1100_state::fp1100_mem_r )
|
||||
{
|
||||
if(m_mem_bank == 0 && offset <= 0x8fff)
|
||||
@ -347,6 +352,7 @@ static MACHINE_CONFIG_START( fp1100, fp1100_state )
|
||||
MCFG_MC6845_ADD("crtc", H46505, "screen", MAIN_CLOCK/2) /* hand tuned to get ~60 fps */
|
||||
MCFG_MC6845_SHOW_BORDER_AREA(false)
|
||||
MCFG_MC6845_CHAR_WIDTH(8)
|
||||
MCFG_MC6845_UPDATE_ROW_CB(fp1100_state, fp1100_update_row)
|
||||
MACHINE_CONFIG_END
|
||||
|
||||
/* ROM definition */
|
||||
|
Loading…
Reference in New Issue
Block a user