cpu: remove obsolete debugger.h include from some of my files

This commit is contained in:
hap 2022-04-02 18:29:40 +02:00
parent f7ed791122
commit 5255f96203
23 changed files with 1 additions and 26 deletions

View File

@ -20,7 +20,6 @@
#include "emu.h"
#include "amis2000.h"
#include "amis2000d.h"
#include "debugger.h"
// S2000 is the most basic one, 64 nibbles internal RAM and 1KB internal ROM

View File

@ -33,8 +33,6 @@ TODO:
#include "emu.h"
#include "cops1base.h"
#include "debugger.h"
cops1_base_device::cops1_base_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, u32 clock, int prgwidth, address_map_constructor program, int datawidth, address_map_constructor data) :
cpu_device(mconfig, type, tag, owner, clock),

View File

@ -21,7 +21,6 @@
#include "emu.h"
#include "e0c6200.h"
#include "e0c6200d.h"
#include "debugger.h"
// construction/destruction

View File

@ -20,7 +20,6 @@ TODO:
#include "emu.h"
#include "hmcs40.h"
#include "debugger.h"
#include "hmcs40d.h"
#define IS_PMOS 0

View File

@ -40,7 +40,6 @@
#include "emu.h"
#include "melps4.h"
#include "melps4d.h"
#include "debugger.h"
melps4_cpu_device::melps4_cpu_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, u32 clock, int prgwidth, address_map_constructor program, int datawidth, address_map_constructor data, int d_pins, u8 sm_page, u8 int_page)

View File

@ -55,8 +55,6 @@ TODO:
#include "emu.h"
#include "pps41base.h"
#include "debugger.h"
pps41_base_device::pps41_base_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, u32 clock, int prgwidth, address_map_constructor program, int datawidth, address_map_constructor data) :
cpu_device(mconfig, type, tag, owner, clock),

View File

@ -23,8 +23,6 @@ It is similar, but too many differences to emulate in this device, probably.
#include "emu.h"
#include "rw5000base.h"
#include "debugger.h"
rw5000_base_device::rw5000_base_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, u32 clock, int prgwidth, address_map_constructor program, int datawidth, address_map_constructor data) :
cpu_device(mconfig, type, tag, owner, clock),

View File

@ -13,7 +13,6 @@
#include "emu.h"
#include "sm500.h"
#include "sm510d.h"
#include "debugger.h"
// MCU types

View File

@ -9,7 +9,6 @@
#include "emu.h"
#include "sm510.h"
#include "sm510d.h"
#include "debugger.h"
// MCU types

View File

@ -17,7 +17,6 @@
#include "emu.h"
#include "sm510base.h"
#include "debugger.h"
//-------------------------------------------------

View File

@ -16,7 +16,6 @@
#include "emu.h"
#include "sm511.h"
#include "sm510d.h"
#include "debugger.h"
// MCU types

View File

@ -17,7 +17,6 @@
#include "emu.h"
#include "sm530.h"
#include "sm510d.h"
#include "debugger.h"
// MCU types

View File

@ -13,7 +13,6 @@
#include "emu.h"
#include "sm590.h"
#include "sm510d.h"
#include "debugger.h"
// MCU types

View File

@ -12,7 +12,6 @@
#include "emu.h"
#include "sm5a.h"
#include "sm510d.h"
#include "debugger.h"
// MCU types

View File

@ -8,7 +8,6 @@
#include "emu.h"
#include "tms0270.h"
#include "debugger.h"
// TMS0270 is a TMS0980 with earrings and a new hat. The new changes look like a quick afterthought, almost hacky
// - RAM, ROM, and main instructions PLAs is the same as TMS0980

View File

@ -9,7 +9,6 @@
#include "emu.h"
#include "tms0980.h"
#include "tms1k_dasm.h"
#include "debugger.h"
// TMS0980
// - 144x4bit RAM array at the bottom-left (128+16, set up as 8x18x4)

View File

@ -13,7 +13,6 @@
#include "emu.h"
#include "tms1000.h"
#include "tms1k_dasm.h"
#include "debugger.h"
// TMS1000
// - 64x4bit RAM array at the bottom-left

View File

@ -12,7 +12,6 @@
#include "emu.h"
#include "tms1100.h"
#include "tms1k_dasm.h"
#include "debugger.h"
// TMS1100 is nearly the same as TMS1000, some different opcodes, and with double the RAM and ROM
DEFINE_DEVICE_TYPE(TMS1100, tms1100_cpu_device, "tms1100", "Texas Instruments TMS1100") // 28-pin DIP, 11 R pins

View File

@ -11,7 +11,6 @@
#include "emu.h"
#include "tms1400.h"
#include "debugger.h"
// TMS1400 follows the TMS1100, it doubles the ROM size again (4 chapters of 16 pages), and adds a 3-level callstack
// - rotate the view and mirror the OR-mask to get the proper layout of the mpla, the default is identical to tms1100

View File

@ -70,7 +70,6 @@ unknown cycle: CME, SSE, SSS
#include "emu.h"
#include "tms1k_base.h"
#include "debugger.h"
tms1k_base_device::tms1k_base_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, u32 clock, u8 o_pins, u8 r_pins, u8 pc_bits, u8 byte_bits, u8 x_bits, int prgwidth, address_map_constructor program, int datawidth, address_map_constructor data)
: cpu_device(mconfig, type, tag, owner, clock)

View File

@ -12,7 +12,6 @@
#include "emu.h"
#include "tp0320.h"
#include "tms1k_dasm.h"
#include "debugger.h"
// TP0320 is TI's first CMOS MCU with integrated LCD controller, the die is still very similar to TMS0980
// - 2048x9bit ROM, same as on TMS0980 with different row-select

View File

@ -23,7 +23,6 @@
#include "emu.h"
#include "ucom4.h"
#include "ucom4d.h"
#include "debugger.h"
// uCOM-43 products: 2000x8 ROM, 96x4 RAM, supports full instruction set

View File

@ -352,4 +352,4 @@ ROM_END
******************************************************************************/
// YEAR NAME PARENT COMP MACHINE INPUT STATE INIT COMPANY, FULLNAME, FLAGS
CONS( 1979, lk3000, 0, 0, lk3000, lk3000, lk3000_state, empty_init, "Lexicon", "LK-3000", MACHINE_NO_SOUND_HW | MACHINE_SUPPORTS_SAVE )
COMP( 1979, lk3000, 0, 0, lk3000, lk3000, lk3000_state, empty_init, "Lexicon", "LK-3000", MACHINE_NO_SOUND_HW | MACHINE_SUPPORTS_SAVE )