Previous 199869 Revisions Next

r18257 Wednesday 3rd October, 2012 at 06:24:43 UTC by Miodrag Milanović
Fixed regressions (no whatsnew)
[src/mame/drivers]cd32.c
[src/mame/includes]bzone.h circusc.h mario.h qix.h

trunk/src/mame/includes/mario.h
r18256r18257
6060
6161   required_shared_ptr<UINT8> m_spriteram;
6262   required_shared_ptr<UINT8> m_videoram;
63   required_device<discrete_device> m_discrete;
63   optional_device<discrete_device> m_discrete;
6464   tilemap_t *m_bg_tilemap;
6565   int m_monitor;
6666
trunk/src/mame/includes/circusc.h
r18256r18257
2020      m_spriteram(*this, "spriteram"),
2121      m_sn_1(*this, "sn1"),
2222      m_sn_2(*this, "sn2"),
23      m_discrete(*this, "discrete"){ }
23      m_discrete(*this, "fltdisc"){ }
2424
2525   /* memory pointers */
2626   required_shared_ptr<UINT8> m_spritebank;
trunk/src/mame/includes/qix.h
r18256r18257
5555   UINT8  m_palette_bank;
5656   UINT8  m_leds;
5757   required_shared_ptr<UINT8> m_scanline_latch;
58   required_device<discrete_device> m_discrete;
58   optional_device<discrete_device> m_discrete;
5959   pen_t m_pens[NUM_PENS];
6060   DECLARE_WRITE8_MEMBER(zookeep_bankswitch_w);
6161   DECLARE_WRITE8_MEMBER(qix_data_firq_w);
trunk/src/mame/includes/bzone.h
r18256r18257
1717      : driver_device(mconfig, type, tag),
1818        m_discrete(*this, "discrete") { }
1919
20   required_device<discrete_device> m_discrete;
20   optional_device<discrete_device> m_discrete;
2121   
2222   UINT8 m_analog_data;
2323   UINT8 m_rb_input_select;
trunk/src/mame/drivers/cd32.c
r18256r18257
14751475/***************************************************************************************************/
14761476
14771477// these are clones of the cd32 SYSTEM because they run on a stock retail unit, with additional HW
1478GAME( 1993, cd32bios, 0,         cd32base, cd32,    driver_device, 0, ROT0, "Commodore Business Machines", "CD32 Bios",       GAME_IMPERFECT_GRAPHICS|GAME_IMPERFECT_SOUND | GAME_IS_BIOS_ROOT )
1478GAME( 1993, cd32bios, 0,         cd32base, cd32,    cd32_state, cd32,    ROT0, "Commodore Business Machines", "CD32 Bios",       GAME_IMPERFECT_GRAPHICS|GAME_IMPERFECT_SOUND | GAME_IS_BIOS_ROOT )
14791479GAME( 1995, cndypuzl, cd32bios, cd32base, cndypuzl, cd32_state, cndypuzl, ROT0, "CD Express", "Candy Puzzle (v1.0)",       GAME_IMPERFECT_GRAPHICS|GAME_IMPERFECT_SOUND )
14801480GAME( 1995, haremchl, cd32bios, cd32base, haremchl, cd32_state, haremchl, ROT0, "CD Express", "Harem Challenge",           GAME_IMPERFECT_GRAPHICS|GAME_IMPERFECT_SOUND )
14811481GAME( 1995, lsrquiz,  cd32bios, cd32base, lsrquiz,  cd32_state,  lsrquiz,  ROT0, "CD Express", "Laser Quiz Italy",          GAME_IMPERFECT_GRAPHICS|GAME_IMPERFECT_SOUND )  /* no player 2 inputs (ingame) */

Previous 199869 Revisions Next


© 1997-2024 The MAME Team