MT05642 [Robbbert]

(also marked Applix as working)
This commit is contained in:
Robbbert 2015-01-27 21:48:17 +11:00
parent 5465591e4f
commit c1aab420ca
3 changed files with 6 additions and 3 deletions

View File

@ -5,8 +5,6 @@
Applix 1616 computer
See for docs: http;//www.microbee-mspp.org.au
You need to sign up and make an introductory thread.
Then you will be granted permission to visit the repository.
First revealed to the world in December 1986 issue of Electronics Today
International (ETI) an Australian electronics magazine which is now defunct.
@ -936,7 +934,7 @@ DRIVER_INIT_MEMBER(applix_state, applix)
/* Driver */
/* YEAR NAME PARENT COMPAT MACHINE INPUT CLASS INIT COMPANY FULLNAME FLAGS */
COMP( 1986, applix, 0, 0, applix, applix, applix_state, applix, "Applix Pty Ltd", "Applix 1616", GAME_NOT_WORKING )
COMP( 1986, applix, 0, 0, applix, applix, applix_state, applix, "Applix Pty Ltd", "Applix 1616", 0 )

View File

@ -56,6 +56,9 @@ void fp_state::video_start()
m_video_ram.allocate(0x20000);
}
MC6845_UPDATE_ROW( fp_state::update_row )
{
}
UINT32 fp_state::screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect)
{
@ -504,6 +507,7 @@ static MACHINE_CONFIG_START( fp, fp_state )
MCFG_MC6845_ADD(MC6845_TAG, MC6845, SCREEN_CRT_TAG, 4000000)
MCFG_MC6845_SHOW_BORDER_AREA(false)
MCFG_MC6845_CHAR_WIDTH(8)
MCFG_MC6845_UPDATE_ROW_CB(fp_state, update_row)
// sound hardware
MCFG_SPEAKER_STANDARD_MONO("mono")

View File

@ -92,6 +92,7 @@ public:
virtual void video_start();
UINT32 screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
MC6845_UPDATE_ROW(update_row);
DECLARE_READ16_MEMBER( mem_r );
DECLARE_WRITE16_MEMBER( mem_w );
DECLARE_READ8_MEMBER( prtr_snd_r );