diff options
author | 2018-12-15 14:32:59 +0100 | |
---|---|---|
committer | 2018-12-15 14:33:23 +0100 | |
commit | a579d0b783b8e23c4dfc638a7d9576dda3d5773d (patch) | |
tree | 06fb1b0e083bd506a8116b35c08cdffc343305ed /src/devices/cpu/nec | |
parent | 8ab05c0fb2b38a0a9ce8f25c5f8ba115b6d55761 (diff) |
-v25, patinhofeio_cpu, pdp1, pic16c5x: Removed MCFG macros. [Ryan Holtz]
-cb2001, hh_pic16, m107, m90, m92, megaphx, patinho_feio, pdp1: Removed MACHINE_CONFIG macros. [Ryan Holtz]
Diffstat (limited to 'src/devices/cpu/nec')
-rw-r--r-- | src/devices/cpu/nec/v25.h | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/src/devices/cpu/nec/v25.h b/src/devices/cpu/nec/v25.h index 3f651337667..209180091d8 100644 --- a/src/devices/cpu/nec/v25.h +++ b/src/devices/cpu/nec/v25.h @@ -21,33 +21,6 @@ enum V25_PENDING }; - -#define MCFG_V25_CONFIG(_table) \ - downcast<v25_common_device &>(*device).set_decryption_table(_table); - - -#define MCFG_V25_PORT_PT_READ_CB(_devcb) \ - downcast<v25_common_device &>(*device).set_pt_in_cb(DEVCB_##_devcb); - -#define MCFG_V25_PORT_P0_READ_CB(_devcb) \ - downcast<v25_common_device &>(*device).set_p0_in_cb(DEVCB_##_devcb); - -#define MCFG_V25_PORT_P1_READ_CB(_devcb) \ - downcast<v25_common_device &>(*device).set_p1_in_cb(DEVCB_##_devcb); - -#define MCFG_V25_PORT_P2_READ_CB(_devcb) \ - downcast<v25_common_device &>(*device).set_p2_in_cb(DEVCB_##_devcb); - - -#define MCFG_V25_PORT_P0_WRITE_CB(_devcb) \ - downcast<v25_common_device &>(*device).set_p0_out_cb(DEVCB_##_devcb); - -#define MCFG_V25_PORT_P1_WRITE_CB(_devcb) \ - downcast<v25_common_device &>(*device).set_p1_out_cb(DEVCB_##_devcb); - -#define MCFG_V25_PORT_P2_WRITE_CB(_devcb) \ - downcast<v25_common_device &>(*device).set_p2_out_cb(DEVCB_##_devcb); - class v25_common_device : public cpu_device { public: |