diff options
author | 2018-12-16 09:08:16 +0100 | |
---|---|---|
committer | 2018-12-16 09:08:39 +0100 | |
commit | 56bb41208ad0de815d82f3bd1a2f546e126b9535 (patch) | |
tree | 871ded7c939f4857e48684d4623219a4165a2cb9 /src/devices/cpu/avr8 | |
parent | c62979a7118226cc6d7ddb497e70c880e51f074b (diff) |
-cpu/adsp2100, amis2000, apexc, arm, arm7, avr8, ccpu, esrip, hcd62121: Removed MCFG macros. [Ryan Holtz]
-audio/dcs, rax: Removed MACHINE_CONFIG macros. [Ryan Holtz]
-drivers/aa310, apexc, aristmk5, cfx9850, cinemat, craft, ertictac, esripsys, gaelco3d, harddriv,
hh_amis2k, nds, polgar, rambo, replicator, risc2500, sbc6510, uzebox: Removed MACHINE_CONFIG macros. [Ryan Holtz]
Diffstat (limited to 'src/devices/cpu/avr8')
-rw-r--r-- | src/devices/cpu/avr8/avr8.h | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/src/devices/cpu/avr8/avr8.h b/src/devices/cpu/avr8/avr8.h index de2b4b4cac0..36b20738979 100644 --- a/src/devices/cpu/avr8/avr8.h +++ b/src/devices/cpu/avr8/avr8.h @@ -44,30 +44,6 @@ //************************************************************************** -// FUSE BITS CONFIGURATION MACROS -//************************************************************************** - -#define MCFG_CPU_AVR8_LFUSE(byte) \ - ((avr8_device*) device)->set_low_fuses(byte); - -#define MCFG_CPU_AVR8_HFUSE(byte) \ - ((avr8_device*) device)->set_high_fuses(byte); - -#define MCFG_CPU_AVR8_EFUSE(byte) \ - ((avr8_device*) device)->set_extended_fuses(byte); - -#define MCFG_CPU_AVR8_LOCK(byte) \ - ((avr8_device*) device)->set_lock_bits(byte); - -//************************************************************************** -// INTERFACE CONFIGURATION MACROS -//************************************************************************** - -#define MCFG_CPU_AVR8_EEPROM(_tag) \ - downcast<avr8_device &>(*device).set_eeprom_tag(_tag); - - -//************************************************************************** // TYPE DEFINITIONS //************************************************************************** |