mirror of
https://github.com/holub/mame
synced 2025-04-23 00:39:36 +03:00
i4004.c: Modernized cpu core (nw)
This commit is contained in:
parent
543c85d4e7
commit
f5afff7e69
@ -11,122 +11,98 @@
|
||||
#include "debugger.h"
|
||||
#include "i4004.h"
|
||||
|
||||
#define VERBOSE 0
|
||||
|
||||
#define LOG(x) do { if (VERBOSE) logerror x; } while (0)
|
||||
|
||||
static const UINT8 kbp_table[] = { 0x00,0x01,0x02,0x0f,0x03,0x0f,0x0f,0x0f,0x04,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f };
|
||||
|
||||
/***************************************************************************
|
||||
TYPE DEFINITIONS
|
||||
***************************************************************************/
|
||||
|
||||
struct i4004_state
|
||||
{
|
||||
UINT8 A; // Accumulator
|
||||
UINT8 R[8];
|
||||
PAIR ADDR[4]; // Address registers
|
||||
PAIR RAM;
|
||||
UINT8 C; // Carry flag
|
||||
UINT8 TEST; // Test PIN status
|
||||
PAIR PC; // It is in fact one of ADDR regs
|
||||
UINT8 flags; // used for I/O only
|
||||
|
||||
legacy_cpu_device *device;
|
||||
address_space *program;
|
||||
direct_read_data *direct;
|
||||
address_space *data;
|
||||
address_space *io;
|
||||
int icount;
|
||||
int pc_pos; // PC possition in ADDR
|
||||
int addr_mask;
|
||||
};
|
||||
|
||||
/***************************************************************************
|
||||
MACROS
|
||||
***************************************************************************/
|
||||
#define GET_PC (cpustate->ADDR[cpustate->pc_pos])
|
||||
#define GET_PC (m_ADDR[m_pc_pos])
|
||||
|
||||
/***************************************************************************
|
||||
INLINE FUNCTIONS
|
||||
***************************************************************************/
|
||||
|
||||
INLINE i4004_state *get_safe_token(device_t *device)
|
||||
const device_type I4004 = &device_creator<i4004_cpu_device>;
|
||||
|
||||
|
||||
i4004_cpu_device::i4004_cpu_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
|
||||
: cpu_device(mconfig, I4004, "Intel I4004", tag, owner, clock)
|
||||
, m_program_config("program", ENDIANNESS_LITTLE, 8, 12, 0)
|
||||
, m_io_config("io", ENDIANNESS_LITTLE, 8, 6, 0)
|
||||
, m_data_config("data", ENDIANNESS_LITTLE, 8, 12, 0)
|
||||
{
|
||||
assert(device != NULL);
|
||||
assert(device->type() == I4004);
|
||||
return (i4004_state *)downcast<legacy_cpu_device *>(device)->token();
|
||||
m_is_octal = true;
|
||||
}
|
||||
|
||||
INLINE UINT8 ROP(i4004_state *cpustate)
|
||||
|
||||
UINT8 i4004_cpu_device::ROP()
|
||||
{
|
||||
UINT8 retVal = cpustate->direct->read_decrypted_byte(GET_PC.w.l);
|
||||
UINT8 retVal = m_direct->read_decrypted_byte(GET_PC.w.l);
|
||||
GET_PC.w.l = (GET_PC.w.l + 1) & 0x0fff;
|
||||
cpustate->PC = GET_PC;
|
||||
m_PC = GET_PC;
|
||||
return retVal;
|
||||
}
|
||||
|
||||
INLINE UINT8 READ_ROM(i4004_state *cpustate)
|
||||
UINT8 i4004_cpu_device::READ_ROM()
|
||||
{
|
||||
return cpustate->direct->read_decrypted_byte((GET_PC.w.l & 0x0f00) | cpustate->R[0]);
|
||||
return m_direct->read_decrypted_byte((GET_PC.w.l & 0x0f00) | m_R[0]);
|
||||
}
|
||||
|
||||
INLINE void WPM(i4004_state *cpustate)
|
||||
void i4004_cpu_device::WPM()
|
||||
{
|
||||
UINT8 t = (cpustate->program->read_byte(cpustate->RAM.d) << 4) | cpustate->A;
|
||||
cpustate->program->write_byte((GET_PC.w.l & 0x0f00) | cpustate->RAM.d, t);
|
||||
UINT8 t = (m_program->read_byte(m_RAM.d) << 4) | m_A;
|
||||
m_program->write_byte((GET_PC.w.l & 0x0f00) | m_RAM.d, t);
|
||||
}
|
||||
|
||||
|
||||
INLINE UINT8 ARG(i4004_state *cpustate)
|
||||
UINT8 i4004_cpu_device::ARG()
|
||||
{
|
||||
UINT8 retVal = cpustate->direct->read_raw_byte(GET_PC.w.l);
|
||||
UINT8 retVal = m_direct->read_raw_byte(GET_PC.w.l);
|
||||
GET_PC.w.l = (GET_PC.w.l + 1) & 0x0fff;
|
||||
cpustate->PC = GET_PC;
|
||||
m_PC = GET_PC;
|
||||
return retVal;
|
||||
}
|
||||
|
||||
INLINE UINT8 RM(i4004_state *cpustate)
|
||||
UINT8 i4004_cpu_device::RM()
|
||||
{
|
||||
return cpustate->data->read_byte(cpustate->RAM.d) & 0x0f;
|
||||
return m_data->read_byte(m_RAM.d) & 0x0f;
|
||||
}
|
||||
|
||||
INLINE UINT8 RMS(i4004_state *cpustate, UINT32 a)
|
||||
UINT8 i4004_cpu_device::RMS(UINT32 a)
|
||||
{
|
||||
return cpustate->data->read_byte((cpustate->RAM.d & 0xff0) + a) >> 4;
|
||||
return m_data->read_byte((m_RAM.d & 0xff0) + a) >> 4;
|
||||
}
|
||||
|
||||
INLINE void WM(i4004_state *cpustate, UINT8 v)
|
||||
void i4004_cpu_device::WM(UINT8 v)
|
||||
{
|
||||
UINT8 t = cpustate->data->read_byte(cpustate->RAM.d);
|
||||
cpustate->data->write_byte(cpustate->RAM.d, (t & 0xf0) | v);
|
||||
UINT8 t = m_data->read_byte(m_RAM.d);
|
||||
m_data->write_byte(m_RAM.d, (t & 0xf0) | v);
|
||||
}
|
||||
|
||||
|
||||
INLINE void WMP(i4004_state *cpustate, UINT8 v)
|
||||
void i4004_cpu_device::WMP(UINT8 v)
|
||||
{
|
||||
cpustate->io->write_byte((cpustate->RAM.d >> 6) | 0x10, v & 0x0f);
|
||||
m_io->write_byte((m_RAM.d >> 6) | 0x10, v & 0x0f);
|
||||
}
|
||||
|
||||
INLINE void WMS(i4004_state *cpustate, UINT32 a, UINT8 v)
|
||||
void i4004_cpu_device::WMS(UINT32 a, UINT8 v)
|
||||
{
|
||||
UINT8 t = cpustate->data->read_byte((cpustate->RAM.d & 0xff0) + a);
|
||||
cpustate->data->write_byte((cpustate->RAM.d & 0xff0) + a, (t & 0x0f) | (v<<4));
|
||||
UINT8 t = m_data->read_byte((m_RAM.d & 0xff0) + a);
|
||||
m_data->write_byte((m_RAM.d & 0xff0) + a, (t & 0x0f) | (v<<4));
|
||||
}
|
||||
|
||||
INLINE UINT8 RIO(i4004_state *cpustate)
|
||||
UINT8 i4004_cpu_device::RIO()
|
||||
{
|
||||
return cpustate->io->read_byte(cpustate->RAM.b.l >> 4) & 0x0f;
|
||||
return m_io->read_byte(m_RAM.b.l >> 4) & 0x0f;
|
||||
}
|
||||
|
||||
INLINE void WIO(i4004_state *cpustate, UINT8 v)
|
||||
void i4004_cpu_device::WIO(UINT8 v)
|
||||
{
|
||||
cpustate->io->write_byte(cpustate->RAM.b.l >> 4, v & 0x0f);
|
||||
m_io->write_byte(m_RAM.b.l >> 4, v & 0x0f);
|
||||
}
|
||||
|
||||
INLINE UINT8 GET_REG(i4004_state *cpustate, UINT8 num)
|
||||
UINT8 i4004_cpu_device::GET_REG(UINT8 num)
|
||||
{
|
||||
UINT8 r = cpustate->R[num>>1];
|
||||
UINT8 r = m_R[num>>1];
|
||||
if (num & 1) {
|
||||
return r & 0x0f;
|
||||
} else {
|
||||
@ -134,35 +110,34 @@ INLINE UINT8 GET_REG(i4004_state *cpustate, UINT8 num)
|
||||
}
|
||||
}
|
||||
|
||||
INLINE void SET_REG(i4004_state *cpustate, UINT8 num, UINT8 val)
|
||||
void i4004_cpu_device::SET_REG(UINT8 num, UINT8 val)
|
||||
{
|
||||
if (num & 1) {
|
||||
cpustate->R[num>>1] = (cpustate->R[num>>1] & 0xf0) + (val & 0x0f);
|
||||
m_R[num>>1] = (m_R[num>>1] & 0xf0) + (val & 0x0f);
|
||||
} else {
|
||||
cpustate->R[num>>1] = (cpustate->R[num>>1] & 0x0f) + ((val & 0x0f) << 4);
|
||||
m_R[num>>1] = (m_R[num>>1] & 0x0f) + ((val & 0x0f) << 4);
|
||||
}
|
||||
}
|
||||
|
||||
INLINE void PUSH_STACK(i4004_state *cpustate)
|
||||
void i4004_cpu_device::PUSH_STACK()
|
||||
{
|
||||
cpustate->pc_pos = (cpustate->pc_pos + 1) & cpustate->addr_mask;
|
||||
m_pc_pos = (m_pc_pos + 1) & m_addr_mask;
|
||||
}
|
||||
|
||||
INLINE void POP_STACK(i4004_state *cpustate)
|
||||
void i4004_cpu_device::POP_STACK()
|
||||
{
|
||||
cpustate->ADDR[cpustate->pc_pos].d = 0;
|
||||
cpustate->pc_pos = (cpustate->pc_pos - 1) & cpustate->addr_mask;
|
||||
m_ADDR[m_pc_pos].d = 0;
|
||||
m_pc_pos = (m_pc_pos - 1) & m_addr_mask;
|
||||
}
|
||||
|
||||
void i4004_set_test(device_t *device, UINT8 val)
|
||||
void i4004_cpu_device::set_test(UINT8 val)
|
||||
{
|
||||
i4004_state *cpustate = get_safe_token(device);
|
||||
cpustate->TEST = val;
|
||||
m_TEST = val;
|
||||
}
|
||||
|
||||
static void execute_one(i4004_state *cpustate, int opcode)
|
||||
void i4004_cpu_device::execute_one(int opcode)
|
||||
{
|
||||
cpustate->icount -= 8;
|
||||
m_icount -= 8;
|
||||
switch (opcode)
|
||||
{
|
||||
case 0x00: /* NOP */
|
||||
@ -173,79 +148,79 @@ static void execute_one(i4004_state *cpustate, int opcode)
|
||||
case 0x18: case 0x19: case 0x1a: case 0x1b:
|
||||
case 0x1c: case 0x1d: case 0x1e: case 0x1f: /* JCN */
|
||||
{
|
||||
UINT8 arg = ARG(cpustate);
|
||||
UINT8 arg = ARG();
|
||||
|
||||
UINT8 C1 = BIT(opcode,3);
|
||||
UINT8 C2 = BIT(opcode,2);
|
||||
UINT8 C3 = BIT(opcode,1);
|
||||
UINT8 C4 = BIT(opcode,0);
|
||||
UINT8 JUMP = (((cpustate->A == 0) ? 1 : 0) & C2) | ((cpustate->C) & C3) | ((cpustate->TEST ^ 1) & C4);
|
||||
cpustate->icount -= 8;
|
||||
UINT8 JUMP = (((m_A == 0) ? 1 : 0) & C2) | ((m_C) & C3) | ((m_TEST ^ 1) & C4);
|
||||
m_icount -= 8;
|
||||
|
||||
if(((C1 ^ 1) & JUMP) | (C1 & (JUMP ^ 1))) {
|
||||
GET_PC.w.l = (GET_PC.w.l & 0x0f00) | arg;
|
||||
cpustate->PC = GET_PC;
|
||||
m_PC = GET_PC;
|
||||
}
|
||||
}
|
||||
break;
|
||||
case 0x20: case 0x22: case 0x24: case 0x26:
|
||||
case 0x28: case 0x2a: case 0x2c: case 0x2e: /* FIM */
|
||||
cpustate->icount -= 8;
|
||||
cpustate->R[(opcode & 0x0f)>>1] = ROP(cpustate);
|
||||
m_icount -= 8;
|
||||
m_R[(opcode & 0x0f)>>1] = ROP();
|
||||
break;
|
||||
case 0x21: case 0x23: case 0x25: case 0x27:
|
||||
case 0x29: case 0x2b: case 0x2d: case 0x2f: /* SRC */
|
||||
cpustate->RAM.b.l = cpustate->R[(opcode & 0x0f)>>1];
|
||||
m_RAM.b.l = m_R[(opcode & 0x0f)>>1];
|
||||
break;
|
||||
case 0x30: case 0x32: case 0x34: case 0x36:
|
||||
case 0x38: case 0x3a: case 0x3c: case 0x3e: /* FIN */
|
||||
cpustate->icount -= 8;
|
||||
cpustate->R[(opcode & 0x0f)>>1] = READ_ROM(cpustate);
|
||||
m_icount -= 8;
|
||||
m_R[(opcode & 0x0f)>>1] = READ_ROM();
|
||||
break;
|
||||
case 0x31: case 0x33: case 0x35: case 0x37:
|
||||
case 0x39: case 0x3b: case 0x3d: case 0x3f: /* JIN */
|
||||
GET_PC.w.l = (GET_PC.w.l & 0x0f00) | cpustate->R[(opcode & 0x0f)>>1];
|
||||
cpustate->PC = GET_PC;
|
||||
GET_PC.w.l = (GET_PC.w.l & 0x0f00) | m_R[(opcode & 0x0f)>>1];
|
||||
m_PC = GET_PC;
|
||||
break;
|
||||
case 0x40: case 0x41: case 0x42: case 0x43:
|
||||
case 0x44: case 0x45: case 0x46: case 0x47:
|
||||
case 0x48: case 0x49: case 0x4a: case 0x4b:
|
||||
case 0x4c: case 0x4d: case 0x4e: case 0x4f: /* JUN */
|
||||
cpustate->icount -= 8;
|
||||
GET_PC.w.l = ((opcode & 0x0f) << 8) | ARG(cpustate);
|
||||
cpustate->PC = GET_PC;
|
||||
m_icount -= 8;
|
||||
GET_PC.w.l = ((opcode & 0x0f) << 8) | ARG();
|
||||
m_PC = GET_PC;
|
||||
break;
|
||||
case 0x50: case 0x51: case 0x52: case 0x53:
|
||||
case 0x54: case 0x55: case 0x56: case 0x57:
|
||||
case 0x58: case 0x59: case 0x5a: case 0x5b:
|
||||
case 0x5c: case 0x5d: case 0x5e: case 0x5f: /* JMS */
|
||||
{
|
||||
UINT16 newPC = ((opcode & 0x0f) << 8) | ARG(cpustate);
|
||||
cpustate->icount -= 8;
|
||||
PUSH_STACK(cpustate);
|
||||
UINT16 newPC = ((opcode & 0x0f) << 8) | ARG();
|
||||
m_icount -= 8;
|
||||
PUSH_STACK();
|
||||
GET_PC.w.l = newPC;
|
||||
cpustate->PC = GET_PC;
|
||||
m_PC = GET_PC;
|
||||
}
|
||||
break;
|
||||
case 0x60: case 0x61: case 0x62: case 0x63:
|
||||
case 0x64: case 0x65: case 0x66: case 0x67:
|
||||
case 0x68: case 0x69: case 0x6a: case 0x6b:
|
||||
case 0x6c: case 0x6d: case 0x6e: case 0x6f: /* INC */
|
||||
SET_REG(cpustate, opcode & 0x0f, GET_REG(cpustate, opcode & 0x0f) + 1);
|
||||
SET_REG(opcode & 0x0f, GET_REG(opcode & 0x0f) + 1);
|
||||
break;
|
||||
case 0x70: case 0x71: case 0x72: case 0x73:
|
||||
case 0x74: case 0x75: case 0x76: case 0x77:
|
||||
case 0x78: case 0x79: case 0x7a: case 0x7b:
|
||||
case 0x7c: case 0x7d: case 0x7e: case 0x7f: /* ISZ */
|
||||
{
|
||||
UINT8 val = (GET_REG(cpustate, opcode & 0x0f) + 1) & 0xf;
|
||||
UINT16 addr = ARG(cpustate);
|
||||
cpustate->icount -= 8;
|
||||
SET_REG(cpustate, opcode & 0x0f, val);
|
||||
UINT8 val = (GET_REG(opcode & 0x0f) + 1) & 0xf;
|
||||
UINT16 addr = ARG();
|
||||
m_icount -= 8;
|
||||
SET_REG(opcode & 0x0f, val);
|
||||
if (val!=0) {
|
||||
GET_PC.w.l = (GET_PC.w.l & 0x0f00) | addr;
|
||||
}
|
||||
cpustate->PC = GET_PC;
|
||||
m_PC = GET_PC;
|
||||
}
|
||||
break;
|
||||
case 0x80: case 0x81: case 0x82: case 0x83:
|
||||
@ -253,9 +228,9 @@ static void execute_one(i4004_state *cpustate, int opcode)
|
||||
case 0x88: case 0x89: case 0x8a: case 0x8b:
|
||||
case 0x8c: case 0x8d: case 0x8e: case 0x8f: /* ADD */
|
||||
{
|
||||
UINT8 acc = cpustate->A + GET_REG(cpustate, opcode & 0x0f) + cpustate->C;
|
||||
cpustate->A = acc & 0x0f;
|
||||
cpustate->C = (acc >> 4) & 1;
|
||||
UINT8 acc = m_A + GET_REG(opcode & 0x0f) + m_C;
|
||||
m_A = acc & 0x0f;
|
||||
m_C = (acc >> 4) & 1;
|
||||
}
|
||||
break;
|
||||
case 0x90: case 0x91: case 0x92: case 0x93:
|
||||
@ -263,155 +238,155 @@ static void execute_one(i4004_state *cpustate, int opcode)
|
||||
case 0x98: case 0x99: case 0x9a: case 0x9b:
|
||||
case 0x9c: case 0x9d: case 0x9e: case 0x9f: /* SUB */
|
||||
{
|
||||
UINT8 acc = cpustate->A + (GET_REG(cpustate, opcode & 0x0f) ^ 0x0f) + (cpustate->C ^ 1);
|
||||
cpustate->A = acc & 0x0f;
|
||||
cpustate->C = (acc >> 4) & 1;
|
||||
UINT8 acc = m_A + (GET_REG(opcode & 0x0f) ^ 0x0f) + (m_C ^ 1);
|
||||
m_A = acc & 0x0f;
|
||||
m_C = (acc >> 4) & 1;
|
||||
}
|
||||
break;
|
||||
case 0xa0: case 0xa1: case 0xa2: case 0xa3:
|
||||
case 0xa4: case 0xa5: case 0xa6: case 0xa7:
|
||||
case 0xa8: case 0xa9: case 0xaa: case 0xab:
|
||||
case 0xac: case 0xad: case 0xae: case 0xaf: /* LD */
|
||||
cpustate->A = GET_REG(cpustate, opcode & 0x0f);
|
||||
m_A = GET_REG(opcode & 0x0f);
|
||||
break;
|
||||
case 0xb0: case 0xb1: case 0xb2: case 0xb3:
|
||||
case 0xb4: case 0xb5: case 0xb6: case 0xb7:
|
||||
case 0xb8: case 0xb9: case 0xba: case 0xbb:
|
||||
case 0xbc: case 0xbd: case 0xbe: case 0xbf: /* XCH */
|
||||
{
|
||||
UINT8 temp = cpustate->A;
|
||||
cpustate->A = GET_REG(cpustate, opcode & 0x0f);
|
||||
SET_REG(cpustate, opcode & 0x0f, temp);
|
||||
UINT8 temp = m_A;
|
||||
m_A = GET_REG(opcode & 0x0f);
|
||||
SET_REG(opcode & 0x0f, temp);
|
||||
}
|
||||
break;
|
||||
case 0xc0: case 0xc1: case 0xc2: case 0xc3:
|
||||
case 0xc4: case 0xc5: case 0xc6: case 0xc7:
|
||||
case 0xc8: case 0xc9: case 0xca: case 0xcb:
|
||||
case 0xcc: case 0xcd: case 0xce: case 0xcf: /* BBL */
|
||||
POP_STACK(cpustate);
|
||||
cpustate->A = opcode & 0x0f;
|
||||
cpustate->PC = GET_PC;
|
||||
POP_STACK();
|
||||
m_A = opcode & 0x0f;
|
||||
m_PC = GET_PC;
|
||||
break;
|
||||
case 0xd0: case 0xd1: case 0xd2: case 0xd3:
|
||||
case 0xd4: case 0xd5: case 0xd6: case 0xd7:
|
||||
case 0xd8: case 0xd9: case 0xda: case 0xdb:
|
||||
case 0xdc: case 0xdd: case 0xde: case 0xdf: /* LDM */
|
||||
cpustate->A = opcode & 0x0f;
|
||||
m_A = opcode & 0x0f;
|
||||
break;
|
||||
case 0xe0: /* WRM */
|
||||
WM(cpustate,cpustate->A);
|
||||
WM(m_A);
|
||||
break;
|
||||
case 0xe1: /* WMP */
|
||||
WMP(cpustate,cpustate->A);
|
||||
WMP(m_A);
|
||||
break;
|
||||
case 0xe2: /* WRR */
|
||||
WIO(cpustate,cpustate->A);
|
||||
WIO(m_A);
|
||||
break;
|
||||
case 0xe3: /* WPM */
|
||||
WPM(cpustate);
|
||||
WPM();
|
||||
break;
|
||||
case 0xe4: /* WR0 */
|
||||
WMS(cpustate,0,cpustate->A);
|
||||
WMS(0,m_A);
|
||||
break;
|
||||
case 0xe5: /* WR1 */
|
||||
WMS(cpustate,1,cpustate->A);
|
||||
WMS(1,m_A);
|
||||
break;
|
||||
case 0xe6: /* WR2 */
|
||||
WMS(cpustate,2,cpustate->A);
|
||||
WMS(2,m_A);
|
||||
break;
|
||||
case 0xe7: /* WR3 */
|
||||
WMS(cpustate,3,cpustate->A);
|
||||
WMS(3,m_A);
|
||||
break;
|
||||
case 0xe8: /* SBM */
|
||||
cpustate->A = cpustate->A + (RM(cpustate) ^ 0x0f) + (cpustate->C ^ 1);
|
||||
cpustate->C = cpustate->A >> 4;
|
||||
cpustate->A &= 0x0f;
|
||||
m_A = m_A + (RM() ^ 0x0f) + (m_C ^ 1);
|
||||
m_C = m_A >> 4;
|
||||
m_A &= 0x0f;
|
||||
break;
|
||||
case 0xe9: /* RDM */
|
||||
cpustate->A = RM(cpustate);
|
||||
m_A = RM();
|
||||
break;
|
||||
case 0xea: /* RDR */
|
||||
cpustate->A = RIO(cpustate);
|
||||
m_A = RIO();
|
||||
break;
|
||||
case 0xeb: /* ADM */
|
||||
cpustate->A += RM(cpustate) + cpustate->C;
|
||||
cpustate->C = cpustate->A >> 4;
|
||||
cpustate->A &= 0x0f;
|
||||
m_A += RM() + m_C;
|
||||
m_C = m_A >> 4;
|
||||
m_A &= 0x0f;
|
||||
break;
|
||||
case 0xec: /* RD0 */
|
||||
cpustate->A = RMS(cpustate,0);
|
||||
m_A = RMS(0);
|
||||
break;
|
||||
case 0xed: /* RD1 */
|
||||
cpustate->A = RMS(cpustate,1);
|
||||
m_A = RMS(1);
|
||||
break;
|
||||
case 0xee: /* RD2 */
|
||||
cpustate->A = RMS(cpustate,2);
|
||||
m_A = RMS(2);
|
||||
break;
|
||||
case 0xef: /* RD3 */
|
||||
cpustate->A = RMS(cpustate,3);
|
||||
m_A = RMS(3);
|
||||
break;
|
||||
|
||||
case 0xf0: /* CLB */
|
||||
cpustate->A = 0;
|
||||
cpustate->C = 0;
|
||||
m_A = 0;
|
||||
m_C = 0;
|
||||
break;
|
||||
case 0xf1: /* CLC */
|
||||
cpustate->C = 0;
|
||||
m_C = 0;
|
||||
break;
|
||||
case 0xf2: /* IAC */
|
||||
cpustate->A += 1;
|
||||
cpustate->C = cpustate->A >> 4;
|
||||
cpustate->A &= 0x0f;
|
||||
m_A += 1;
|
||||
m_C = m_A >> 4;
|
||||
m_A &= 0x0f;
|
||||
break;
|
||||
case 0xf3: /* CMC */
|
||||
cpustate->C ^= 1;
|
||||
m_C ^= 1;
|
||||
break;
|
||||
case 0xf4: /* CMA */
|
||||
cpustate->A ^= 0x0f;
|
||||
m_A ^= 0x0f;
|
||||
break;
|
||||
case 0xf5: /* RAL */
|
||||
cpustate->A = (cpustate->A << 1) | cpustate->C;
|
||||
cpustate->C = cpustate->A >> 4;
|
||||
cpustate->A &= 0x0f;
|
||||
m_A = (m_A << 1) | m_C;
|
||||
m_C = m_A >> 4;
|
||||
m_A &= 0x0f;
|
||||
break;
|
||||
case 0xf6: /* RAR */
|
||||
{
|
||||
UINT8 c = cpustate->A & 1;
|
||||
cpustate->A = (cpustate->A >> 1) | (cpustate->C << 3);
|
||||
cpustate->C = c;
|
||||
UINT8 c = m_A & 1;
|
||||
m_A = (m_A >> 1) | (m_C << 3);
|
||||
m_C = c;
|
||||
}
|
||||
break;
|
||||
case 0xf7: /* TCC */
|
||||
cpustate->A = cpustate->C;
|
||||
cpustate->C = 0;
|
||||
m_A = m_C;
|
||||
m_C = 0;
|
||||
break;
|
||||
case 0xf8: /* DAC */
|
||||
cpustate->A = cpustate->A + 0x0f;
|
||||
cpustate->C = cpustate->A >> 4;
|
||||
cpustate->A &= 0x0f;
|
||||
m_A = m_A + 0x0f;
|
||||
m_C = m_A >> 4;
|
||||
m_A &= 0x0f;
|
||||
break;
|
||||
case 0xf9: /* TCS */
|
||||
cpustate->A = cpustate->C ? 10 : 9;
|
||||
cpustate->C = 0;
|
||||
m_A = m_C ? 10 : 9;
|
||||
m_C = 0;
|
||||
break;
|
||||
case 0xfa: /* STC */
|
||||
cpustate->C = 1;
|
||||
m_C = 1;
|
||||
break;
|
||||
case 0xfb: /* DAA */
|
||||
if (cpustate->C || (cpustate->A > 9)) {
|
||||
cpustate->A += 6;
|
||||
if (m_C || (m_A > 9)) {
|
||||
m_A += 6;
|
||||
}
|
||||
if (cpustate->A > 0x0f) {
|
||||
if (m_A > 0x0f) {
|
||||
// it is unaffected if it is in range
|
||||
cpustate->C = 1;
|
||||
m_C = 1;
|
||||
}
|
||||
cpustate->A &= 0x0f;
|
||||
m_A &= 0x0f;
|
||||
break;
|
||||
case 0xfc: /* KBP */
|
||||
cpustate->A = kbp_table[cpustate->A];
|
||||
m_A = kbp_table[m_A];
|
||||
break;
|
||||
case 0xfd: /* DCL */
|
||||
cpustate->RAM.b.h = cpustate->A;
|
||||
m_RAM.b.h = m_A;
|
||||
break;
|
||||
}
|
||||
}
|
||||
@ -421,90 +396,85 @@ static void execute_one(i4004_state *cpustate, int opcode)
|
||||
COMMON EXECUTION
|
||||
***************************************************************************/
|
||||
|
||||
static CPU_EXECUTE( i4004 )
|
||||
void i4004_cpu_device::execute_run()
|
||||
{
|
||||
i4004_state *cpustate = get_safe_token(device);
|
||||
|
||||
do
|
||||
{
|
||||
debugger_instruction_hook(device, GET_PC.d);
|
||||
execute_one(cpustate, ROP(cpustate));
|
||||
debugger_instruction_hook(this, GET_PC.d);
|
||||
execute_one(ROP());
|
||||
|
||||
} while (cpustate->icount > 0);
|
||||
} while (m_icount > 0);
|
||||
}
|
||||
|
||||
/***************************************************************************
|
||||
CORE INITIALIZATION
|
||||
***************************************************************************/
|
||||
|
||||
static CPU_INIT( i4004 )
|
||||
void i4004_cpu_device::device_start()
|
||||
{
|
||||
i4004_state *cpustate = get_safe_token(device);
|
||||
|
||||
/* set up the state table */
|
||||
{
|
||||
device_state_interface *state;
|
||||
device->interface(state);
|
||||
state->state_add(I4004_PC, "PC", cpustate->PC.w.l).mask(0x0fff);
|
||||
state->state_add(STATE_GENPC, "GENPC", cpustate->PC.w.l).mask(0x0fff).noshow();
|
||||
state->state_add(STATE_GENFLAGS, "GENFLAGS", cpustate->flags).mask(0x0f).callimport().callexport().noshow().formatstr("%4s");
|
||||
state->state_add(I4004_A, "A", cpustate->A).mask(0x0f);
|
||||
state_add(I4004_PC, "PC", m_PC.w.l).mask(0x0fff);
|
||||
state_add(STATE_GENPC, "GENPC", m_PC.w.l).mask(0x0fff).noshow();
|
||||
state_add(STATE_GENFLAGS, "GENFLAGS", m_flags).mask(0x0f).callimport().callexport().noshow().formatstr("%4s");
|
||||
state_add(I4004_A, "A", m_A).mask(0x0f);
|
||||
|
||||
astring tempstr;
|
||||
for (int regnum = 0; regnum < 8; regnum++)
|
||||
state->state_add(I4004_R01 + regnum, tempstr.format("R%X%X", regnum*2, regnum*2+1), cpustate->R[regnum]);
|
||||
{
|
||||
state_add(I4004_R01 + regnum, tempstr.format("R%X%X", regnum*2, regnum*2+1), m_R[regnum]);
|
||||
}
|
||||
|
||||
for (int addrnum = 0; addrnum < 4; addrnum++)
|
||||
state->state_add(I4004_ADDR1 + addrnum, tempstr.format("ADDR%d", addrnum + 1), cpustate->ADDR[addrnum].w.l).mask(0xfff);
|
||||
{
|
||||
state_add(I4004_ADDR1 + addrnum, tempstr.format("ADDR%d", addrnum + 1), m_ADDR[addrnum].w.l).mask(0xfff);
|
||||
}
|
||||
|
||||
state->state_add(I4004_RAM, "RAM", cpustate->RAM.w.l).mask(0x0fff);
|
||||
state_add(I4004_RAM, "RAM", m_RAM.w.l).mask(0x0fff);
|
||||
}
|
||||
|
||||
cpustate->device = device;
|
||||
m_program = &space(AS_PROGRAM);
|
||||
m_direct = &m_program->direct();
|
||||
m_data = &space(AS_DATA);
|
||||
m_io = &space(AS_IO);
|
||||
|
||||
cpustate->program = &device->space(AS_PROGRAM);
|
||||
cpustate->direct = &cpustate->program->direct();
|
||||
cpustate->data = &device->space(AS_DATA);
|
||||
cpustate->io = &device->space(AS_IO);
|
||||
save_item(NAME(m_PC));
|
||||
save_item(NAME(m_A));
|
||||
save_item(NAME(m_C));
|
||||
save_item(NAME(m_TEST));
|
||||
save_item(NAME(m_pc_pos));
|
||||
save_item(NAME(m_ADDR[0]));
|
||||
save_item(NAME(m_ADDR[1]));
|
||||
save_item(NAME(m_ADDR[2]));
|
||||
save_item(NAME(m_ADDR[3]));
|
||||
save_item(NAME(m_R[0]));
|
||||
save_item(NAME(m_R[1]));
|
||||
save_item(NAME(m_R[2]));
|
||||
save_item(NAME(m_R[3]));
|
||||
save_item(NAME(m_R[4]));
|
||||
save_item(NAME(m_R[5]));
|
||||
save_item(NAME(m_R[6]));
|
||||
save_item(NAME(m_R[7]));
|
||||
save_item(NAME(m_RAM));
|
||||
|
||||
device->save_item(NAME(cpustate->PC));
|
||||
device->save_item(NAME(cpustate->A));
|
||||
device->save_item(NAME(cpustate->C));
|
||||
device->save_item(NAME(cpustate->TEST));
|
||||
device->save_item(NAME(cpustate->pc_pos));
|
||||
device->save_item(NAME(cpustate->ADDR[0]));
|
||||
device->save_item(NAME(cpustate->ADDR[1]));
|
||||
device->save_item(NAME(cpustate->ADDR[2]));
|
||||
device->save_item(NAME(cpustate->ADDR[3]));
|
||||
device->save_item(NAME(cpustate->R[0]));
|
||||
device->save_item(NAME(cpustate->R[1]));
|
||||
device->save_item(NAME(cpustate->R[2]));
|
||||
device->save_item(NAME(cpustate->R[3]));
|
||||
device->save_item(NAME(cpustate->R[4]));
|
||||
device->save_item(NAME(cpustate->R[5]));
|
||||
device->save_item(NAME(cpustate->R[6]));
|
||||
device->save_item(NAME(cpustate->R[7]));
|
||||
device->save_item(NAME(cpustate->RAM));
|
||||
m_icountptr = &m_icount;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/***************************************************************************
|
||||
COMMON RESET
|
||||
***************************************************************************/
|
||||
|
||||
static CPU_RESET( i4004 )
|
||||
void i4004_cpu_device::device_reset()
|
||||
{
|
||||
i4004_state *cpustate = get_safe_token(device);
|
||||
|
||||
cpustate->addr_mask = 3;
|
||||
cpustate->C = 0;
|
||||
cpustate->pc_pos = 0;
|
||||
cpustate->A = 0;
|
||||
memset(cpustate->R,0,8);
|
||||
memset(cpustate->ADDR,0,sizeof(cpustate->ADDR));
|
||||
cpustate->RAM.d = 0;
|
||||
cpustate->PC = GET_PC;
|
||||
m_addr_mask = 3;
|
||||
m_C = 0;
|
||||
m_pc_pos = 0;
|
||||
m_A = 0;
|
||||
memset(m_R,0,8);
|
||||
memset(m_ADDR,0,sizeof(m_ADDR));
|
||||
m_RAM.d = 0;
|
||||
m_PC = GET_PC;
|
||||
|
||||
}
|
||||
|
||||
@ -514,110 +484,46 @@ static CPU_RESET( i4004 )
|
||||
COMMON STATE IMPORT/EXPORT
|
||||
***************************************************************************/
|
||||
|
||||
static CPU_IMPORT_STATE( i4004 )
|
||||
void i4004_cpu_device::state_import(const device_state_entry &entry)
|
||||
{
|
||||
i4004_state *cpustate = get_safe_token(device);
|
||||
|
||||
switch (entry.index())
|
||||
{
|
||||
case STATE_GENFLAGS:
|
||||
cpustate->C = (cpustate->flags >> 1) & 1;
|
||||
cpustate->TEST = (cpustate->flags >> 0) & 1;
|
||||
m_C = (m_flags >> 1) & 1;
|
||||
m_TEST = (m_flags >> 0) & 1;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
static CPU_EXPORT_STATE( i4004 )
|
||||
void i4004_cpu_device::state_export(const device_state_entry &entry)
|
||||
{
|
||||
i4004_state *cpustate = get_safe_token(device);
|
||||
|
||||
switch (entry.index())
|
||||
{
|
||||
case STATE_GENFLAGS:
|
||||
cpustate->flags = ((cpustate->A == 0) ? 0x04 : 0x00) |
|
||||
(cpustate->C ? 0x02 : 0x00) |
|
||||
(cpustate->TEST ? 0x01 : 0x00);
|
||||
m_flags = ((m_A == 0) ? 0x04 : 0x00) |
|
||||
(m_C ? 0x02 : 0x00) |
|
||||
(m_TEST ? 0x01 : 0x00);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
static CPU_EXPORT_STRING( i4004 )
|
||||
void i4004_cpu_device::state_string_export(const device_state_entry &entry, astring &string)
|
||||
{
|
||||
i4004_state *cpustate = get_safe_token(device);
|
||||
|
||||
switch (entry.index())
|
||||
{
|
||||
case STATE_GENFLAGS:
|
||||
string.printf(".%c%c%c",
|
||||
(cpustate->A==0) ? 'Z':'.',
|
||||
cpustate->C ? 'C':'.',
|
||||
cpustate->TEST ? 'T':'.');
|
||||
(m_A==0) ? 'Z':'.',
|
||||
m_C ? 'C':'.',
|
||||
m_TEST ? 'T':'.');
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
/***************************************************************************
|
||||
COMMON SET INFO
|
||||
***************************************************************************/
|
||||
static CPU_SET_INFO( i4004 )
|
||||
offs_t i4004_cpu_device::disasm_disassemble(char *buffer, offs_t pc, const UINT8 *oprom, const UINT8 *opram, UINT32 options)
|
||||
{
|
||||
extern CPU_DISASSEMBLE( i4004 );
|
||||
return CPU_DISASSEMBLE_NAME(i4004)(this, buffer, pc, oprom, opram, options);
|
||||
}
|
||||
|
||||
/***************************************************************************
|
||||
4004 GET INFO
|
||||
***************************************************************************/
|
||||
|
||||
CPU_GET_INFO( i4004 )
|
||||
{
|
||||
i4004_state *cpustate = (device != NULL && device->token() != NULL) ? get_safe_token(device) : NULL;
|
||||
switch (state)
|
||||
{
|
||||
/* --- the following bits of info are returned as 64-bit signed integers --- */
|
||||
case CPUINFO_INT_CONTEXT_SIZE: info->i = sizeof(i4004_state); break;
|
||||
case CPUINFO_INT_INPUT_LINES: info->i = 0; break;
|
||||
case CPUINFO_INT_DEFAULT_IRQ_VECTOR: info->i = 0; break;
|
||||
case CPUINFO_INT_ENDIANNESS: info->i = ENDIANNESS_LITTLE; break;
|
||||
case CPUINFO_INT_CLOCK_MULTIPLIER: info->i = 1; break;
|
||||
case CPUINFO_INT_CLOCK_DIVIDER: info->i = 1; break;
|
||||
case CPUINFO_INT_MIN_INSTRUCTION_BYTES: info->i = 1; break;
|
||||
case CPUINFO_INT_MAX_INSTRUCTION_BYTES: info->i = 2; break;
|
||||
case CPUINFO_INT_MIN_CYCLES: info->i = 8; break;
|
||||
case CPUINFO_INT_MAX_CYCLES: info->i = 16; break;
|
||||
|
||||
case CPUINFO_INT_DATABUS_WIDTH + AS_PROGRAM: info->i = 8; break;
|
||||
case CPUINFO_INT_ADDRBUS_WIDTH + AS_PROGRAM: info->i = 12; break;
|
||||
case CPUINFO_INT_ADDRBUS_SHIFT + AS_PROGRAM: info->i = 0; break;
|
||||
|
||||
case CPUINFO_INT_DATABUS_WIDTH + AS_DATA: info->i = 8; break;
|
||||
case CPUINFO_INT_ADDRBUS_WIDTH + AS_DATA: info->i = 12; break;
|
||||
case CPUINFO_INT_ADDRBUS_SHIFT + AS_DATA: info->i = 0; break;
|
||||
|
||||
case CPUINFO_INT_DATABUS_WIDTH + AS_IO: info->i = 8; break; // Only lower 4 bits used
|
||||
case CPUINFO_INT_ADDRBUS_WIDTH + AS_IO: info->i = 6; break; // 4 I/O for each ROM chip and 4 OUT for each RAM
|
||||
case CPUINFO_INT_ADDRBUS_SHIFT + AS_IO: info->i = 0; break; // There could be 4 chips in 16 banks for RAM
|
||||
|
||||
/* --- the following bits of info are returned as pointers to functions --- */
|
||||
case CPUINFO_FCT_SET_INFO: info->setinfo = CPU_SET_INFO_NAME(i4004); break;
|
||||
case CPUINFO_FCT_INIT: info->init = CPU_INIT_NAME(i4004); break;
|
||||
case CPUINFO_FCT_RESET: info->reset = CPU_RESET_NAME(i4004); break;
|
||||
case CPUINFO_FCT_EXECUTE: info->execute = CPU_EXECUTE_NAME(i4004); break;
|
||||
case CPUINFO_FCT_DISASSEMBLE: info->disassemble = CPU_DISASSEMBLE_NAME(i4004); break;
|
||||
case CPUINFO_FCT_IMPORT_STATE: info->import_state = CPU_IMPORT_STATE_NAME(i4004); break;
|
||||
case CPUINFO_FCT_EXPORT_STATE: info->export_state = CPU_EXPORT_STATE_NAME(i4004); break;
|
||||
case CPUINFO_FCT_EXPORT_STRING: info->export_string = CPU_EXPORT_STRING_NAME(i4004); break;
|
||||
|
||||
/* --- the following bits of info are returned as pointers --- */
|
||||
case CPUINFO_PTR_INSTRUCTION_COUNTER: info->icount = &cpustate->icount; break;
|
||||
|
||||
/* --- the following bits of info are returned as NULL-terminated strings --- */
|
||||
case CPUINFO_STR_NAME: strcpy(info->s, "4004"); break;
|
||||
case CPUINFO_STR_FAMILY: strcpy(info->s, "Intel 4004"); break;
|
||||
case CPUINFO_STR_VERSION: strcpy(info->s, "1.0"); break;
|
||||
case CPUINFO_STR_SOURCE_FILE: strcpy(info->s, __FILE__); break;
|
||||
case CPUINFO_STR_CREDITS: strcpy(info->s, "Copyright Miodrag Milanovic"); break;
|
||||
|
||||
case CPUINFO_IS_OCTAL: info->i = true; break;
|
||||
}
|
||||
}
|
||||
|
||||
DEFINE_LEGACY_CPU_DEVICE(I4004, i4004);
|
||||
// case CPUINFO_IS_OCTAL: info->i = true; break;
|
||||
|
@ -22,13 +22,87 @@ enum
|
||||
TYPE DEFINITIONS
|
||||
***************************************************************************/
|
||||
|
||||
/***************************************************************************
|
||||
FUNCTION PROTOTYPES
|
||||
***************************************************************************/
|
||||
class i4004_cpu_device : public cpu_device
|
||||
{
|
||||
public:
|
||||
// construction/destruction
|
||||
i4004_cpu_device(const machine_config &mconfig, const char *_tag, device_t *_owner, UINT32 _clock);
|
||||
|
||||
DECLARE_LEGACY_CPU_DEVICE(I4004, i4004);
|
||||
void set_test(UINT8 val);
|
||||
|
||||
protected:
|
||||
// device-level overrides
|
||||
virtual void device_start();
|
||||
virtual void device_reset();
|
||||
|
||||
// device_execute_interface overrides
|
||||
virtual UINT32 execute_min_cycles() const { return 8; }
|
||||
virtual UINT32 execute_max_cycles() const { return 16; }
|
||||
virtual void execute_run();
|
||||
|
||||
// device_memory_interface overrides
|
||||
virtual const address_space_config *memory_space_config(address_spacenum spacenum = AS_0) const
|
||||
{
|
||||
switch (spacenum)
|
||||
{
|
||||
case AS_PROGRAM: return &m_program_config;
|
||||
case AS_IO: return &m_io_config;
|
||||
case AS_DATA: return &m_data_config;
|
||||
default: return NULL;
|
||||
}
|
||||
}
|
||||
|
||||
// device_state_interface overrides
|
||||
virtual void state_import(const device_state_entry &entry);
|
||||
virtual void state_export(const device_state_entry &entry);
|
||||
virtual void state_string_export(const device_state_entry &entry, astring &string);
|
||||
|
||||
// device_disasm_interface overrides
|
||||
virtual UINT32 disasm_min_opcode_bytes() const { return 1; }
|
||||
virtual UINT32 disasm_max_opcode_bytes() const { return 2; }
|
||||
virtual offs_t disasm_disassemble(char *buffer, offs_t pc, const UINT8 *oprom, const UINT8 *opram, UINT32 options);
|
||||
|
||||
UINT8 ROP();
|
||||
UINT8 READ_ROM();
|
||||
void WPM();
|
||||
UINT8 ARG();
|
||||
UINT8 RM();
|
||||
UINT8 RMS(UINT32 a);
|
||||
void WM(UINT8 v);
|
||||
void WMP(UINT8 v);
|
||||
void WMS(UINT32 a, UINT8 v);
|
||||
UINT8 RIO();
|
||||
void WIO(UINT8 v);
|
||||
UINT8 GET_REG(UINT8 num);
|
||||
void SET_REG(UINT8 num, UINT8 val);
|
||||
void PUSH_STACK();
|
||||
void POP_STACK();
|
||||
void execute_one(int opcode);
|
||||
|
||||
address_space_config m_program_config;
|
||||
address_space_config m_io_config;
|
||||
address_space_config m_data_config;
|
||||
|
||||
UINT8 m_A; // Accumulator
|
||||
UINT8 m_R[8];
|
||||
PAIR m_ADDR[4]; // Address registers
|
||||
PAIR m_RAM;
|
||||
UINT8 m_C; // Carry flag
|
||||
UINT8 m_TEST; // Test PIN status
|
||||
PAIR m_PC; // It is in fact one of ADDR regs
|
||||
UINT8 m_flags; // used for I/O only
|
||||
|
||||
address_space *m_program;
|
||||
direct_read_data *m_direct;
|
||||
address_space *m_data;
|
||||
address_space *m_io;
|
||||
int m_icount;
|
||||
int m_pc_pos; // PC possition in ADDR
|
||||
int m_addr_mask;
|
||||
};
|
||||
|
||||
|
||||
extern const device_type I4004;
|
||||
|
||||
CPU_DISASSEMBLE( i4004 );
|
||||
|
||||
void i4004_set_test(device_t *device, UINT8 val);
|
||||
#endif
|
||||
|
@ -37,7 +37,7 @@ public:
|
||||
protected:
|
||||
|
||||
// devices
|
||||
required_device<cpu_device> m_maincpu;
|
||||
required_device<i4004_cpu_device> m_maincpu;
|
||||
|
||||
private:
|
||||
UINT8 m_out_data;
|
||||
@ -141,7 +141,7 @@ WRITE8_MEMBER( flicker_state::port01_w )
|
||||
if (BIT(ioport("COIN")->read(), 0) )
|
||||
test_port |= coin_port;
|
||||
|
||||
i4004_set_test(m_maincpu, BIT(test_port, offset));
|
||||
m_maincpu->set_test(BIT(test_port, offset));
|
||||
}
|
||||
|
||||
WRITE8_MEMBER( flicker_state::port10_w )
|
||||
|
@ -20,7 +20,7 @@ public:
|
||||
m_dac(*this, "dac")
|
||||
{ }
|
||||
|
||||
required_device<cpu_device> m_maincpu;
|
||||
required_device<i4004_cpu_device> m_maincpu;
|
||||
required_device<dac_device> m_dac;
|
||||
DECLARE_READ8_MEMBER( data_r );
|
||||
DECLARE_WRITE8_MEMBER( nixie_w );
|
||||
@ -130,7 +130,7 @@ INPUT_PORTS_END
|
||||
|
||||
TIMER_DEVICE_CALLBACK_MEMBER(nixieclock_state::timer_callback)
|
||||
{
|
||||
i4004_set_test(m_maincpu,m_timer);
|
||||
m_maincpu->set_test(m_timer);
|
||||
m_timer^=1;
|
||||
}
|
||||
|
||||
|
@ -182,7 +182,7 @@ TIMER_DEVICE_CALLBACK_MEMBER(busicom_state::timer_callback)
|
||||
m_timer ^=1;
|
||||
if (m_timer==1) m_drum_index++;
|
||||
if (m_drum_index==13) m_drum_index=0;
|
||||
i4004_set_test(m_maincpu,m_timer);
|
||||
m_maincpu->set_test(m_timer);
|
||||
|
||||
}
|
||||
|
||||
|
@ -7,6 +7,7 @@
|
||||
#ifndef BUSICOM_H_
|
||||
#define BUSICOM_H_
|
||||
|
||||
#include "cpu/i4004/i4004.h"
|
||||
|
||||
class busicom_state : public driver_device
|
||||
{
|
||||
@ -33,7 +34,7 @@ public:
|
||||
virtual void palette_init();
|
||||
UINT32 screen_update_busicom(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
|
||||
TIMER_DEVICE_CALLBACK_MEMBER(timer_callback);
|
||||
required_device<cpu_device> m_maincpu;
|
||||
required_device<i4004_cpu_device> m_maincpu;
|
||||
UINT8 get_bit_selected(UINT32 val,int num);
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user