Previous 199869 Revisions Next

r32863 Wednesday 22nd October, 2014 at 07:40:44 UTC by David Haywood
untie champbwl.c from tnzs_state, this is not really necessary anymore because seta001 and all video related functions are a proper device.
[src/mame/drivers]champbwl.c

trunk/src/mame/drivers/champbwl.c
r241374r241375
155155#include "sound/x1_010.h"
156156#include "machine/nvram.h"
157157#include "machine/ticket.h"
158#include "includes/tnzs.h"
158#include "video/seta001.h"
159159
160class champbwl_state : public tnzs_state
160class champbwl_state : public driver_device
161161{
162162public:
163163   champbwl_state(const machine_config &mconfig, device_type type, const char *tag)
164      : tnzs_state(mconfig, type, tag),
164      : driver_device(mconfig, type, tag),
165      m_maincpu(*this, "maincpu"),
166      m_seta001(*this, "spritegen"),
167      m_palette(*this, "palette"),
165168      m_x1(*this, "x1snd") { }
166169
170   int      m_screenflip;
171
172   required_device<cpu_device> m_maincpu;
173   required_device<seta001_device> m_seta001;
174   required_device<palette_device> m_palette;
167175   required_device<x1_010_device> m_x1;
168176   UINT8    m_last_trackball_val[2];
169177   DECLARE_READ8_MEMBER(trackball_r);
r241374r241375
172180   DECLARE_MACHINE_START(champbwl);
173181   DECLARE_MACHINE_RESET(champbwl);
174182   DECLARE_MACHINE_START(doraemon);
183   DECLARE_PALETTE_INIT(champbwl);
175184   UINT32 screen_update_champbwl(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
176185   UINT32 screen_update_doraemon(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
177186   void screen_eof_champbwl(screen_device &screen, bool state);
178187   void screen_eof_doraemon(screen_device &screen, bool state);
179188};
180189
190PALETTE_INIT_MEMBER(champbwl_state,champbwl)
191{
192   const UINT8 *color_prom = memregion("proms")->base();
193   int i, col;
181194
195   for (i = 0; i < palette.entries(); i++)
196   {
197      col = (color_prom[i] << 8) + color_prom[i + 512];
198      palette.set_pen_color(i, pal5bit(col >> 10), pal5bit(col >> 5), pal5bit(col >> 0));
199   }
200}
182201
202
183203READ8_MEMBER(champbwl_state::trackball_r)
184204{
185205   UINT8 ret;
r241374r241375
443463MACHINE_RESET_MEMBER(champbwl_state,champbwl)
444464{
445465   m_screenflip = 0;
446   m_mcu_type = -1;
447466   m_last_trackball_val[0] = 0;
448467   m_last_trackball_val[1] = 0;
449468
r241374r241375
497516   MCFG_GFXDECODE_ADD("gfxdecode", "palette", champbwl)
498517   MCFG_PALETTE_ADD("palette", 512)
499518
500   MCFG_PALETTE_INIT_OWNER(champbwl_state,arknoid2)
519   MCFG_PALETTE_INIT_OWNER(champbwl_state,champbwl)
501520
502521   /* sound hardware */
503522   MCFG_SPEAKER_STANDARD_STEREO("lspeaker", "rspeaker")
r241374r241375
562581   MCFG_GFXDECODE_ADD("gfxdecode", "palette", champbwl)
563582   MCFG_PALETTE_ADD("palette", 512)
564583
565   MCFG_PALETTE_INIT_OWNER(champbwl_state,arknoid2)
584   MCFG_PALETTE_INIT_OWNER(champbwl_state,champbwl)
566585
567586   /* sound hardware */
568587   MCFG_SPEAKER_STANDARD_MONO("mono")


Previous 199869 Revisions Next


© 1997-2024 The MAME Team