mirror of
https://github.com/holub/mame
synced 2025-05-30 17:41:47 +03:00
One last device type to fix (nw)
This commit is contained in:
parent
59016b0ccd
commit
540e3b8259
@ -44,14 +44,14 @@ CPU_DISASSEMBLE( pdp8 );
|
||||
#define OPR_GROUP1_VAL 0000
|
||||
#define OPR_GROUP2_VAL 0400
|
||||
|
||||
const device_type PDP8CPU = device_creator<pdp8_device>;
|
||||
DEFINE_DEVICE_TYPE(PDP8, pdp8_device, "pdp8_cpu", "PDP8")
|
||||
|
||||
//-------------------------------------------------
|
||||
// pdp8_device - constructor
|
||||
//-------------------------------------------------
|
||||
|
||||
pdp8_device::pdp8_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock)
|
||||
: cpu_device(mconfig, PDP8CPU, "PDP8CPU", tag, owner, clock, "pdp8_cpu", __FILE__),
|
||||
: cpu_device(mconfig, PDP8, tag, owner, clock),
|
||||
m_program_config("program", ENDIANNESS_BIG, 12, 12),
|
||||
m_pc(0),
|
||||
m_ac(0),
|
||||
|
@ -90,7 +90,7 @@ private:
|
||||
};
|
||||
|
||||
// device type definition
|
||||
extern const device_type PDP8CPU;
|
||||
DECLARE_DEVICE_TYPE(PDP8, pdp8_device)
|
||||
|
||||
/***************************************************************************
|
||||
REGISTER ENUMERATION
|
||||
|
Loading…
Reference in New Issue
Block a user