mirror of
https://github.com/holub/mame
synced 2025-06-30 16:00:01 +03:00
(MESS) jtc.c: Moved driver state into the driver file (nw)
This commit is contained in:
parent
c661e81296
commit
3faea5bc66
1
.gitattributes
vendored
1
.gitattributes
vendored
@ -7448,7 +7448,6 @@ src/mess/includes/hp48.h svneol=native#text/plain
|
|||||||
src/mess/includes/huebler.h svneol=native#text/plain
|
src/mess/includes/huebler.h svneol=native#text/plain
|
||||||
src/mess/includes/hx20.h svneol=native#text/plain
|
src/mess/includes/hx20.h svneol=native#text/plain
|
||||||
src/mess/includes/intv.h svneol=native#text/plain
|
src/mess/includes/intv.h svneol=native#text/plain
|
||||||
src/mess/includes/jtc.h svneol=native#text/plain
|
|
||||||
src/mess/includes/jupiter.h svneol=native#text/plain
|
src/mess/includes/jupiter.h svneol=native#text/plain
|
||||||
src/mess/includes/kaypro.h svneol=native#text/plain
|
src/mess/includes/kaypro.h svneol=native#text/plain
|
||||||
src/mess/includes/kc.h svneol=native#text/plain
|
src/mess/includes/kc.h svneol=native#text/plain
|
||||||
|
@ -6,7 +6,90 @@
|
|||||||
|
|
||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
|
|
||||||
#include "includes/jtc.h"
|
#include "emu.h"
|
||||||
|
#include "cpu/z8/z8.h"
|
||||||
|
#include "imagedev/cassette.h"
|
||||||
|
#include "bus/centronics/ctronics.h"
|
||||||
|
#include "machine/ram.h"
|
||||||
|
#include "sound/speaker.h"
|
||||||
|
#include "sound/wave.h"
|
||||||
|
|
||||||
|
#define SCREEN_TAG "screen"
|
||||||
|
#define UB8830D_TAG "ub8830d"
|
||||||
|
#define CENTRONICS_TAG "centronics"
|
||||||
|
|
||||||
|
#define JTC_ES40_VIDEORAM_SIZE 0x2000
|
||||||
|
|
||||||
|
class jtc_state : public driver_device
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
jtc_state(const machine_config &mconfig, device_type type, const char *tag)
|
||||||
|
: driver_device(mconfig, type, tag),
|
||||||
|
m_maincpu(*this, UB8830D_TAG),
|
||||||
|
m_cassette(*this, "cassette"),
|
||||||
|
m_speaker(*this, "speaker"),
|
||||||
|
m_centronics(*this, CENTRONICS_TAG),
|
||||||
|
m_video_ram(*this, "video_ram"){ }
|
||||||
|
|
||||||
|
required_device<cpu_device> m_maincpu;
|
||||||
|
required_device<cassette_image_device> m_cassette;
|
||||||
|
required_device<speaker_sound_device> m_speaker;
|
||||||
|
required_device<centronics_device> m_centronics;
|
||||||
|
|
||||||
|
virtual void machine_start();
|
||||||
|
|
||||||
|
virtual void video_start();
|
||||||
|
UINT32 screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
|
||||||
|
|
||||||
|
DECLARE_WRITE8_MEMBER( p2_w );
|
||||||
|
DECLARE_READ8_MEMBER( p3_r );
|
||||||
|
DECLARE_WRITE8_MEMBER( p3_w );
|
||||||
|
DECLARE_PALETTE_INIT(jtc_es40);
|
||||||
|
optional_shared_ptr<UINT8> m_video_ram;
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
class jtces88_state : public jtc_state
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
jtces88_state(const machine_config &mconfig, device_type type, const char *tag)
|
||||||
|
: jtc_state(mconfig, type, tag)
|
||||||
|
{ }
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
class jtces23_state : public jtc_state
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
jtces23_state(const machine_config &mconfig, device_type type, const char *tag)
|
||||||
|
: jtc_state(mconfig, type, tag)
|
||||||
|
{ }
|
||||||
|
|
||||||
|
virtual void video_start();
|
||||||
|
UINT32 screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
class jtces40_state : public jtc_state
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
jtces40_state(const machine_config &mconfig, device_type type, const char *tag)
|
||||||
|
: jtc_state(mconfig, type, tag)
|
||||||
|
{ }
|
||||||
|
|
||||||
|
virtual void video_start();
|
||||||
|
UINT32 screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
|
||||||
|
|
||||||
|
DECLARE_READ8_MEMBER( videoram_r );
|
||||||
|
DECLARE_WRITE8_MEMBER( videoram_w );
|
||||||
|
DECLARE_WRITE8_MEMBER( banksel_w );
|
||||||
|
|
||||||
|
UINT8 m_video_bank;
|
||||||
|
UINT8 *m_color_ram_r;
|
||||||
|
UINT8 *m_color_ram_g;
|
||||||
|
UINT8 *m_color_ram_b;
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
/* Read/Write Handlers */
|
/* Read/Write Handlers */
|
||||||
|
|
||||||
|
@ -1,88 +0,0 @@
|
|||||||
#pragma once
|
|
||||||
|
|
||||||
#ifndef __JTC__
|
|
||||||
#define __JTC__
|
|
||||||
|
|
||||||
|
|
||||||
#include "emu.h"
|
|
||||||
#include "cpu/z8/z8.h"
|
|
||||||
#include "imagedev/cassette.h"
|
|
||||||
#include "bus/centronics/ctronics.h"
|
|
||||||
#include "machine/ram.h"
|
|
||||||
#include "sound/speaker.h"
|
|
||||||
#include "sound/wave.h"
|
|
||||||
|
|
||||||
#define SCREEN_TAG "screen"
|
|
||||||
#define UB8830D_TAG "ub8830d"
|
|
||||||
#define CENTRONICS_TAG "centronics"
|
|
||||||
|
|
||||||
#define JTC_ES40_VIDEORAM_SIZE 0x2000
|
|
||||||
|
|
||||||
class jtc_state : public driver_device
|
|
||||||
{
|
|
||||||
public:
|
|
||||||
jtc_state(const machine_config &mconfig, device_type type, const char *tag)
|
|
||||||
: driver_device(mconfig, type, tag),
|
|
||||||
m_maincpu(*this, UB8830D_TAG),
|
|
||||||
m_cassette(*this, "cassette"),
|
|
||||||
m_speaker(*this, "speaker"),
|
|
||||||
m_centronics(*this, CENTRONICS_TAG),
|
|
||||||
m_video_ram(*this, "video_ram"){ }
|
|
||||||
|
|
||||||
required_device<cpu_device> m_maincpu;
|
|
||||||
required_device<cassette_image_device> m_cassette;
|
|
||||||
required_device<speaker_sound_device> m_speaker;
|
|
||||||
required_device<centronics_device> m_centronics;
|
|
||||||
|
|
||||||
virtual void machine_start();
|
|
||||||
|
|
||||||
virtual void video_start();
|
|
||||||
UINT32 screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
|
|
||||||
|
|
||||||
DECLARE_WRITE8_MEMBER( p2_w );
|
|
||||||
DECLARE_READ8_MEMBER( p3_r );
|
|
||||||
DECLARE_WRITE8_MEMBER( p3_w );
|
|
||||||
DECLARE_PALETTE_INIT(jtc_es40);
|
|
||||||
optional_shared_ptr<UINT8> m_video_ram;
|
|
||||||
};
|
|
||||||
|
|
||||||
class jtces88_state : public jtc_state
|
|
||||||
{
|
|
||||||
public:
|
|
||||||
jtces88_state(const machine_config &mconfig, device_type type, const char *tag)
|
|
||||||
: jtc_state(mconfig, type, tag)
|
|
||||||
{ }
|
|
||||||
};
|
|
||||||
|
|
||||||
class jtces23_state : public jtc_state
|
|
||||||
{
|
|
||||||
public:
|
|
||||||
jtces23_state(const machine_config &mconfig, device_type type, const char *tag)
|
|
||||||
: jtc_state(mconfig, type, tag)
|
|
||||||
{ }
|
|
||||||
|
|
||||||
virtual void video_start();
|
|
||||||
UINT32 screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
|
|
||||||
};
|
|
||||||
|
|
||||||
class jtces40_state : public jtc_state
|
|
||||||
{
|
|
||||||
public:
|
|
||||||
jtces40_state(const machine_config &mconfig, device_type type, const char *tag)
|
|
||||||
: jtc_state(mconfig, type, tag)
|
|
||||||
{ }
|
|
||||||
|
|
||||||
virtual void video_start();
|
|
||||||
UINT32 screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
|
|
||||||
|
|
||||||
DECLARE_READ8_MEMBER( videoram_r );
|
|
||||||
DECLARE_WRITE8_MEMBER( videoram_w );
|
|
||||||
DECLARE_WRITE8_MEMBER( banksel_w );
|
|
||||||
|
|
||||||
UINT8 m_video_bank;
|
|
||||||
UINT8 *m_color_ram_r;
|
|
||||||
UINT8 *m_color_ram_g;
|
|
||||||
UINT8 *m_color_ram_b;
|
|
||||||
};
|
|
||||||
|
|
||||||
#endif
|
|
Loading…
Reference in New Issue
Block a user