Previous 199869 Revisions Next

r34649 Tuesday 27th January, 2015 at 10:48:17 UTC by Robbbert
MT05642 [Robbbert]
(also marked Applix as working)
[src/mess/drivers]applix.c apricotp.c
[src/mess/includes]apricotp.h

trunk/src/mess/drivers/applix.c
r243160r243161
55    Applix 1616 computer
66
77    See for docs: http;//www.microbee-mspp.org.au
8    You need to sign up and make an introductory thread.
9    Then you will be granted permission to visit the repository.
108
119    First revealed to the world in December 1986 issue of Electronics Today
1210    International (ETI) an Australian electronics magazine which is now defunct.
r243160r243161
936934/* Driver */
937935
938936/*    YEAR  NAME    PARENT  COMPAT  MACHINE INPUT   CLASS         INIT    COMPANY          FULLNAME       FLAGS */
939COMP( 1986, applix, 0,       0,     applix, applix, applix_state, applix, "Applix Pty Ltd", "Applix 1616", GAME_NOT_WORKING )
937COMP( 1986, applix, 0,       0,     applix, applix, applix_state, applix, "Applix Pty Ltd", "Applix 1616", 0 )
940938
941939
942940
trunk/src/mess/drivers/apricotp.c
r243160r243161
5656   m_video_ram.allocate(0x20000);
5757}
5858
59MC6845_UPDATE_ROW( fp_state::update_row )
60{
61}
5962
6063UINT32 fp_state::screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect)
6164{
r243160r243161
504507   MCFG_MC6845_ADD(MC6845_TAG, MC6845, SCREEN_CRT_TAG, 4000000)
505508   MCFG_MC6845_SHOW_BORDER_AREA(false)
506509   MCFG_MC6845_CHAR_WIDTH(8)
510   MCFG_MC6845_UPDATE_ROW_CB(fp_state, update_row)
507511
508512   // sound hardware
509513   MCFG_SPEAKER_STANDARD_MONO("mono")
trunk/src/mess/includes/apricotp.h
r243160r243161
9292   virtual void video_start();
9393   UINT32 screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
9494
95   MC6845_UPDATE_ROW(update_row);
9596   DECLARE_READ16_MEMBER( mem_r );
9697   DECLARE_WRITE16_MEMBER( mem_w );
9798   DECLARE_READ8_MEMBER( prtr_snd_r );


Previous 199869 Revisions Next


© 1997-2024 The MAME Team