diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/devices/cpu/tms0980/tms1000.h | 10 | ||||
-rw-r--r-- | src/devices/cpu/tms0980/tms1k_base.cpp (renamed from src/devices/cpu/tms0980/tms0980.cpp) | 2 | ||||
-rw-r--r-- | src/devices/cpu/tms0980/tms1k_base.h (renamed from src/devices/cpu/tms0980/tms0980.h) | 6 | ||||
-rw-r--r-- | src/devices/cpu/tms0980/tms1k_dasm.cpp (renamed from src/devices/cpu/tms0980/tms0980d.cpp) | 2 | ||||
-rw-r--r-- | src/mame/drivers/microvsn.cpp | 2 | ||||
-rw-r--r-- | src/mame/includes/hh_tms1k.h | 2 |
6 files changed, 17 insertions, 7 deletions
diff --git a/src/devices/cpu/tms0980/tms1000.h b/src/devices/cpu/tms0980/tms1000.h new file mode 100644 index 00000000000..8b042b78cf8 --- /dev/null +++ b/src/devices/cpu/tms0980/tms1000.h @@ -0,0 +1,10 @@ +// license:BSD-3-Clause +// copyright-holders:Wilbert Pol, hap + +#ifndef _TMS1000_H_ +#define _TMS1000_H_ + +#include "tms1k_base.h" + + +#endif /* _TMS1000_H_ */ diff --git a/src/devices/cpu/tms0980/tms0980.cpp b/src/devices/cpu/tms0980/tms1k_base.cpp index f0ff6bd124b..b09d8b11273 100644 --- a/src/devices/cpu/tms0980/tms0980.cpp +++ b/src/devices/cpu/tms0980/tms1k_base.cpp @@ -66,7 +66,7 @@ unknown cycle: CME, SSE, SSS */ -#include "tms0980.h" +#include "tms1k_base.h" #include "debugger.h" // supported types: diff --git a/src/devices/cpu/tms0980/tms0980.h b/src/devices/cpu/tms0980/tms1k_base.h index af14ebd6500..c1585bd22f0 100644 --- a/src/devices/cpu/tms0980/tms0980.h +++ b/src/devices/cpu/tms0980/tms1k_base.h @@ -6,8 +6,8 @@ */ -#ifndef _TMS0980_H_ -#define _TMS0980_H_ +#ifndef _TMS1KBASE_H_ +#define _TMS1KBASE_H_ #include "emu.h" #include "machine/pla.h" @@ -574,4 +574,4 @@ extern const device_type TMS0270; extern const device_type TP0320; -#endif /* _TMS0980_H_ */ +#endif /* _TMS1KBASE_H_ */ diff --git a/src/devices/cpu/tms0980/tms0980d.cpp b/src/devices/cpu/tms0980/tms1k_dasm.cpp index 81eba3739b5..054d4f09699 100644 --- a/src/devices/cpu/tms0980/tms0980d.cpp +++ b/src/devices/cpu/tms0980/tms1k_dasm.cpp @@ -8,7 +8,7 @@ #include "emu.h" #include "debugger.h" -#include "tms0980.h" +#include "tms1k_base.h" enum e_mnemonics diff --git a/src/mame/drivers/microvsn.cpp b/src/mame/drivers/microvsn.cpp index 6056ad38edd..65a84d4ff92 100644 --- a/src/mame/drivers/microvsn.cpp +++ b/src/mame/drivers/microvsn.cpp @@ -17,7 +17,7 @@ of the games were clocked at around 500KHz, 550KHz, or 300KHz. #include "emu.h" #include "cpu/mcs48/mcs48.h" -#include "cpu/tms0980/tms0980.h" +#include "cpu/tms0980/tms1000.h" #include "sound/dac.h" #include "rendlay.h" diff --git a/src/mame/includes/hh_tms1k.h b/src/mame/includes/hh_tms1k.h index 46f6530ae7a..3b9db9aa1b6 100644 --- a/src/mame/includes/hh_tms1k.h +++ b/src/mame/includes/hh_tms1k.h @@ -11,7 +11,7 @@ #include "emu.h" -#include "cpu/tms0980/tms0980.h" +#include "cpu/tms0980/tms1000.h" #include "sound/speaker.h" |