Start moving devices out of src/mame/shared to more appropriate places

This commit is contained in:
AJR 2022-06-28 14:41:16 -04:00
parent f37e69828c
commit 21efb0e47c
59 changed files with 117 additions and 71 deletions

View File

@ -463,6 +463,8 @@ if (BUSES["ATA"]~=null) then
MAME_DIR .. "src/devices/bus/ata/atapihle.h", MAME_DIR .. "src/devices/bus/ata/atapihle.h",
MAME_DIR .. "src/devices/bus/ata/cr589.cpp", MAME_DIR .. "src/devices/bus/ata/cr589.cpp",
MAME_DIR .. "src/devices/bus/ata/cr589.h", MAME_DIR .. "src/devices/bus/ata/cr589.h",
MAME_DIR .. "src/devices/bus/ata/gdrom.cpp",
MAME_DIR .. "src/devices/bus/ata/gdrom.h",
MAME_DIR .. "src/devices/bus/ata/idehd.cpp", MAME_DIR .. "src/devices/bus/ata/idehd.cpp",
MAME_DIR .. "src/devices/bus/ata/idehd.h", MAME_DIR .. "src/devices/bus/ata/idehd.h",
MAME_DIR .. "src/devices/bus/ata/px320a.cpp", MAME_DIR .. "src/devices/bus/ata/px320a.cpp",

View File

@ -2720,6 +2720,8 @@ if (CPUS["Z80"]~=null or CPUS["KC80"]~=null) then
MAME_DIR .. "src/devices/cpu/z80/ez80.h", MAME_DIR .. "src/devices/cpu/z80/ez80.h",
MAME_DIR .. "src/devices/cpu/z80/lz8420m.cpp", MAME_DIR .. "src/devices/cpu/z80/lz8420m.cpp",
MAME_DIR .. "src/devices/cpu/z80/lz8420m.h", MAME_DIR .. "src/devices/cpu/z80/lz8420m.h",
MAME_DIR .. "src/devices/cpu/z80/mc8123.cpp",
MAME_DIR .. "src/devices/cpu/z80/mc8123.h",
MAME_DIR .. "src/devices/cpu/z80/r800.cpp", MAME_DIR .. "src/devices/cpu/z80/r800.cpp",
MAME_DIR .. "src/devices/cpu/z80/r800.h", MAME_DIR .. "src/devices/cpu/z80/r800.h",
} }

View File

@ -5018,6 +5018,28 @@ if (MACHINES["AT_MB"]~=null) then
} }
end end
---------------------------------------------------
--
--@src/devices/machine/bacta_datalogger.h,MACHINES["BACTA_DATALOGGER"] = true
---------------------------------------------------
if (MACHINES["BACTA_DATALOGGER"]~=null) then
files {
MAME_DIR .. "src/devices/machine/bacta_datalogger.cpp",
MAME_DIR .. "src/devices/machine/bacta_datalogger.h",
}
end
---------------------------------------------------
--
--@src/devices/machine/nmk112.h,MACHINES["NMK112"] = true
---------------------------------------------------
if (MACHINES["NMK112"]~=null) then
files {
MAME_DIR .. "src/devices/machine/nmk112.cpp",
MAME_DIR .. "src/devices/machine/nmk112.h",
}
end
--------------------------------------------------- ---------------------------------------------------
-- --
--@src/devices/machine/saa7191.h,MACHINES["SAA7191"] = true --@src/devices/machine/saa7191.h,MACHINES["SAA7191"] = true

View File

@ -591,6 +591,30 @@ if (VIDEOS["IMS_CVC"]~=null) then
} }
end end
--------------------------------------------------
--
--@src/devices/video/k051316.h,VIDEOS["K051316"] = true
--------------------------------------------------
if (VIDEOS["K051316"]~=null) then
files {
MAME_DIR .. "src/devices/video/k051316.cpp",
MAME_DIR .. "src/devices/video/k051316.h",
}
end
--------------------------------------------------
--
--@src/devices/video/k053936.h,VIDEOS["K053936"] = true
--------------------------------------------------
if (VIDEOS["K053936"]~=null) then
files {
MAME_DIR .. "src/devices/video/k053936.cpp",
MAME_DIR .. "src/devices/video/k053936.h",
}
end
-------------------------------------------------- --------------------------------------------------
-- --
--@src/devices/video/lc7582.h,VIDEOS["LC7582"] = true --@src/devices/video/lc7582.h,VIDEOS["LC7582"] = true
@ -1000,6 +1024,18 @@ if (VIDEOS["TLC34076"]~=null) then
} }
end end
--------------------------------------------------
--
--@src/devices/video/tmap038.h,VIDEOS["TMAP038"] = true
--------------------------------------------------
if (VIDEOS["TMAP038"]~=null) then
files {
MAME_DIR .. "src/devices/video/tmap038.cpp",
MAME_DIR .. "src/devices/video/tmap038.h",
}
end
-------------------------------------------------- --------------------------------------------------
-- --
--@src/devices/video/tms34061.h,VIDEOS["TMS34061"] = true --@src/devices/video/tms34061.h,VIDEOS["TMS34061"] = true

View File

@ -393,6 +393,8 @@ VIDEOS["I82730"] = true
VIDEOS["I8275"] = true VIDEOS["I8275"] = true
VIDEOS["IMS_CVC"] = true VIDEOS["IMS_CVC"] = true
VIDEOS["JANGOU_BLITTER"] = true VIDEOS["JANGOU_BLITTER"] = true
VIDEOS["K051316"] = true
VIDEOS["K053936"] = true
VIDEOS["LC7582"] = true VIDEOS["LC7582"] = true
VIDEOS["LC7985"] = true VIDEOS["LC7985"] = true
VIDEOS["M50458"] = true VIDEOS["M50458"] = true
@ -436,6 +438,7 @@ VIDEOS["T6963C"] = true
VIDEOS["T6A04"] = true VIDEOS["T6A04"] = true
VIDEOS["TEA1002"] = true VIDEOS["TEA1002"] = true
VIDEOS["TLC34076"] = true VIDEOS["TLC34076"] = true
VIDEOS["TMAP038"] = true
VIDEOS["TMS34061"] = true VIDEOS["TMS34061"] = true
VIDEOS["TMS3556"] = true VIDEOS["TMS3556"] = true
VIDEOS["TMS9927"] = true VIDEOS["TMS9927"] = true
@ -512,6 +515,7 @@ MACHINES["AT_KEYBC"] = true
MACHINES["AT_MB"] = true MACHINES["AT_MB"] = true
MACHINES["AUTOCONFIG"] = true MACHINES["AUTOCONFIG"] = true
MACHINES["AY31015"] = true MACHINES["AY31015"] = true
MACHINES["BACTA_DATALOGGER"] = true
MACHINES["BANKDEV"] = true MACHINES["BANKDEV"] = true
MACHINES["BIM68153"] = true MACHINES["BIM68153"] = true
MACHINES["BITMAP_PRINTER"] = true MACHINES["BITMAP_PRINTER"] = true

View File

@ -6,12 +6,12 @@
***************************************************************************/ ***************************************************************************/
#ifndef MAME_MACHINE_GDROM_H #ifndef MAME_BUS_ATA_GDROM_H
#define MAME_MACHINE_GDROM_H #define MAME_BUS_ATA_GDROM_H
#pragma once #pragma once
#include "bus/ata/atapicdr.h" #include "atapicdr.h"
class gdrom_device : public atapi_cdrom_device class gdrom_device : public atapi_cdrom_device
{ {
@ -43,4 +43,4 @@ private:
DECLARE_DEVICE_TYPE(GDROM, gdrom_device) DECLARE_DEVICE_TYPE(GDROM, gdrom_device)
#endif // MAME_MACHINE_GDROM_H #endif // MAME_BUS_ATA_GDROM_H

View File

@ -6,12 +6,12 @@
***************************************************************************/ ***************************************************************************/
#ifndef MAME_MACHINE_MC8123 #ifndef MAME_CPU_Z80_MC8123_H
#define MAME_MACHINE_MC8123 #define MAME_CPU_Z80_MC8123_H
#pragma once #pragma once
#include "cpu/z80/z80.h" #include "z80.h"
class mc8123_device : public z80_device class mc8123_device : public z80_device
{ {
@ -40,4 +40,4 @@ private:
DECLARE_DEVICE_TYPE(MC8123, mc8123_device) DECLARE_DEVICE_TYPE(MC8123, mc8123_device)
#endif // MAME_MACHINE_MC8123 #endif // MAME_CPU_Z80_MC8123_H

View File

@ -1,7 +1,7 @@
// license:BSD-3-Clause // license:BSD-3-Clause
// copyright-holders:James Wallace // copyright-holders:James Wallace
#ifndef MAME_BACTA_DATALOGGER_H #ifndef MAME_MACHINE_BACTA_DATALOGGER_H
#define MAME_BACTA_DATALOGGER_H #define MAME_MACHINE_BACTA_DATALOGGER_H
#include "diserial.h" #include "diserial.h"
@ -36,4 +36,4 @@ private:
DECLARE_DEVICE_TYPE(BACTA_DATALOGGER, bacta_datalogger_device) DECLARE_DEVICE_TYPE(BACTA_DATALOGGER, bacta_datalogger_device)
#endif // MAME_BACTA_DATALOGGER_H #endif // MAME_MACHINE_BACTA_DATALOGGER_H

View File

@ -18,9 +18,9 @@ maybe close to jalmah.cpp?
*/ */
#include "emu.h" #include "emu.h"
#include "nmk112.h"
#include "cpu/m68000/m68000.h" #include "cpu/m68000/m68000.h"
#include "machine/nmk112.h"
#include "machine/timer.h" #include "machine/timer.h"
#include "sound/okim6295.h" #include "sound/okim6295.h"

View File

@ -5,11 +5,10 @@
#include "mpu4_characteriser_pal.h" #include "mpu4_characteriser_pal.h"
#include "mpu4_characteriser_pal_bwb.h" #include "mpu4_characteriser_pal_bwb.h"
#include "bacta_datalogger.h"
#include "cpu/m6809/m6809.h" #include "cpu/m6809/m6809.h"
#include "machine/6821pia.h" #include "machine/6821pia.h"
#include "machine/6840ptm.h" #include "machine/6840ptm.h"
#include "machine/bacta_datalogger.h"
#include "machine/mc68681.h" #include "machine/mc68681.h"
#include "machine/meters.h" #include "machine/meters.h"
#include "machine/nvram.h" #include "machine/nvram.h"

View File

@ -17,13 +17,13 @@
****************************************************************************/ ****************************************************************************/
#include "emu.h" #include "emu.h"
#include "bacta_datalogger.h"
#include "bus/nscsi/cd.h" #include "bus/nscsi/cd.h"
#include "bus/nscsi/hd.h" #include "bus/nscsi/hd.h"
#include "cpu/i386/i386.h" #include "cpu/i386/i386.h"
#include "cpu/tms32031/tms32031.h" #include "cpu/tms32031/tms32031.h"
#include "machine/53c7xx.h" #include "machine/53c7xx.h"
#include "machine/bacta_datalogger.h"
#include "machine/mc146818.h" #include "machine/mc146818.h"
#include "machine/nvram.h" #include "machine/nvram.h"
#include "machine/timer.h" #include "machine/timer.h"

View File

@ -36,11 +36,10 @@
#include "emu.h" #include "emu.h"
#include "bacta_datalogger.h"
#include "cpu/m68000/m68000.h" #include "cpu/m68000/m68000.h"
#include "formats/guab_dsk.h" #include "formats/guab_dsk.h"
#include "imagedev/floppy.h" #include "imagedev/floppy.h"
#include "machine/bacta_datalogger.h"
#include "machine/6840ptm.h" #include "machine/6840ptm.h"
#include "machine/6850acia.h" #include "machine/6850acia.h"
#include "machine/clock.h" #include "machine/clock.h"

View File

@ -10,9 +10,8 @@
#pragma once #pragma once
#include "bacta_datalogger.h"
#include "cpu/tms34010/tms34010.h" #include "cpu/tms34010/tms34010.h"
#include "machine/bacta_datalogger.h"
#include "machine/i8255.h" #include "machine/i8255.h"
#include "machine/mc68681.h" #include "machine/mc68681.h"
#include "machine/meters.h" #include "machine/meters.h"

View File

@ -35,8 +35,7 @@
#include "emu.h" #include "emu.h"
#include "jpmsys5.h" #include "jpmsys5.h"
#include "bacta_datalogger.h" #include "machine/bacta_datalogger.h"
#include "machine/clock.h" #include "machine/clock.h"
#include "machine/input_merger.h" #include "machine/input_merger.h"
#include "sound/saa1099.h" #include "sound/saa1099.h"

View File

@ -12,7 +12,7 @@
#include "cpu/m6809/konami.h" #include "cpu/m6809/konami.h"
#include "sound/upd7759.h" #include "sound/upd7759.h"
#include "k051316.h" #include "video/k051316.h"
#include "k051960.h" #include "k051960.h"
#include "k052109.h" #include "k052109.h"
#include "konami_helper.h" #include "konami_helper.h"

View File

@ -15,7 +15,6 @@
#include "emu.h" #include "emu.h"
#include "konamipt.h" #include "konamipt.h"
#include "k051316.h"
#include "k051960.h" #include "k051960.h"
#include "k052109.h" #include "k052109.h"
#include "konami_helper.h" #include "konami_helper.h"
@ -27,6 +26,7 @@
#include "machine/watchdog.h" #include "machine/watchdog.h"
#include "sound/k007232.h" #include "sound/k007232.h"
#include "sound/ymopm.h" #include "sound/ymopm.h"
#include "video/k051316.h"
#include "emupal.h" #include "emupal.h"
#include "speaker.h" #include "speaker.h"

View File

@ -17,7 +17,6 @@
#include "emu.h" #include "emu.h"
#include "konamipt.h" #include "konamipt.h"
#include "k051316.h"
#include "k051960.h" #include "k051960.h"
#include "k052109.h" #include "k052109.h"
#include "konami_helper.h" #include "konami_helper.h"
@ -27,6 +26,7 @@
#include "machine/gen_latch.h" #include "machine/gen_latch.h"
#include "machine/watchdog.h" #include "machine/watchdog.h"
#include "sound/k007232.h" #include "sound/k007232.h"
#include "video/k051316.h"
#include "emupal.h" #include "emupal.h"
#include "screen.h" #include "screen.h"

View File

@ -13,7 +13,7 @@
#include "machine/bankdev.h" #include "machine/bankdev.h"
#include "sound/k007232.h" #include "sound/k007232.h"
#include "k051960.h" #include "k051960.h"
#include "k051316.h" #include "video/k051316.h"
#include "k051733.h" #include "k051733.h"
#include "konami_helper.h" #include "konami_helper.h"
#include "emupal.h" #include "emupal.h"

View File

@ -14,7 +14,7 @@
#include "machine/timer.h" #include "machine/timer.h"
#include "k054156_k054157_k056832.h" #include "k054156_k054157_k056832.h"
#include "k053246_k053247_k055673.h" #include "k053246_k053247_k055673.h"
#include "k053936.h" #include "video/k053936.h"
#include "k053251.h" #include "k053251.h"
#include "konami_helper.h" #include "konami_helper.h"
#include "tilemap.h" #include "tilemap.h"

View File

@ -15,7 +15,7 @@
#include "machine/gen_latch.h" #include "machine/gen_latch.h"
#include "machine/input_merger.h" #include "machine/input_merger.h"
#include "sound/sn76496.h" #include "sound/sn76496.h"
#include "k051316.h" #include "video/k051316.h"
#include "emupal.h" #include "emupal.h"
#include "tilemap.h" #include "tilemap.h"

View File

@ -13,7 +13,7 @@
#include "sound/k054539.h" #include "sound/k054539.h"
#include "k053246_k053247_k055673.h" #include "k053246_k053247_k055673.h"
#include "k053250.h" #include "k053250.h"
#include "k053936.h" #include "video/k053936.h"
#include "k054156_k054157_k056832.h" #include "k054156_k054157_k056832.h"
#include "k054338.h" #include "k054338.h"
#include "k055555.h" #include "k055555.h"

View File

@ -30,8 +30,8 @@
#include "machine/k053252.h" #include "machine/k053252.h"
#include "machine/timer.h" #include "machine/timer.h"
#include "k051316.h"
#include "k053246_k053247_k055673.h" #include "k053246_k053247_k055673.h"
#include "k053250.h"
#include "k053251.h" #include "k053251.h"
#include "konami_helper.h" #include "konami_helper.h"
@ -42,7 +42,7 @@
#include "machine/rescap.h" #include "machine/rescap.h"
#include "sound/k053260.h" #include "sound/k053260.h"
#include "sound/ymopm.h" #include "sound/ymopm.h"
#include "k053250.h" #include "video/k051316.h"
#include "emupal.h" #include "emupal.h"
#include "screen.h" #include "screen.h"

View File

@ -72,7 +72,7 @@
#include "machine/k056230.h" #include "machine/k056230.h"
#include "machine/watchdog.h" #include "machine/watchdog.h"
#include "sound/k054539.h" #include "sound/k054539.h"
#include "k053936.h" #include "video/k053936.h"
#include "emupal.h" #include "emupal.h"
#include "screen.h" #include "screen.h"
#include "speaker.h" #include "speaker.h"

View File

@ -14,7 +14,6 @@
#include "emu.h" #include "emu.h"
#include "k051316.h"
#include "k053244_k053245.h" #include "k053244_k053245.h"
#include "konami_helper.h" #include "konami_helper.h"
@ -24,6 +23,7 @@
#include "machine/watchdog.h" #include "machine/watchdog.h"
#include "sound/k053260.h" #include "sound/k053260.h"
#include "sound/ymopl.h" #include "sound/ymopl.h"
#include "video/k051316.h"
#include "emupal.h" #include "emupal.h"
#include "speaker.h" #include "speaker.h"

View File

@ -13,7 +13,7 @@
#include "sound/k054539.h" #include "sound/k054539.h"
#include "machine/k053252.h" #include "machine/k053252.h"
#include "k053246_k053247_k055673.h" #include "k053246_k053247_k055673.h"
#include "k053936.h" #include "video/k053936.h"
#include "machine/k054321.h" #include "machine/k054321.h"
#include "konami_helper.h" #include "konami_helper.h"
#include "emupal.h" #include "emupal.h"

View File

@ -14,7 +14,7 @@
#include "k052109.h" #include "k052109.h"
#include "k051960.h" #include "k051960.h"
#include "k053251.h" #include "k053251.h"
#include "k053936.h" #include "video/k053936.h"
#include "k054000.h" #include "k054000.h"
#include "konami_helper.h" #include "konami_helper.h"
#include "emupal.h" #include "emupal.h"

View File

@ -13,7 +13,7 @@
#include "machine/gen_latch.h" #include "machine/gen_latch.h"
#include "machine/input_merger.h" #include "machine/input_merger.h"
#include "k051960.h" #include "k051960.h"
#include "k051316.h" #include "video/k051316.h"
#include "konami_helper.h" #include "konami_helper.h"
class ultraman_state : public driver_device class ultraman_state : public driver_device

View File

@ -7,7 +7,7 @@
#include "machine/timer.h" #include "machine/timer.h"
#include "sound/k007232.h" #include "sound/k007232.h"
#include "k051316.h" #include "video/k051316.h"
#include "k007452.h" #include "k007452.h"
#include "emupal.h" #include "emupal.h"
#include "screen.h" #include "screen.h"

View File

@ -10,8 +10,6 @@
#pragma once #pragma once
#include "k053936.h"
#include "machine/eepromser.h" #include "machine/eepromser.h"
#include "machine/gen_latch.h" #include "machine/gen_latch.h"
#include "machine/timer.h" #include "machine/timer.h"
@ -19,6 +17,7 @@
#include "sound/okim6295.h" #include "sound/okim6295.h"
#include "sound/ymopm.h" #include "sound/ymopm.h"
#include "video/imagetek_i4100.h" #include "video/imagetek_i4100.h"
#include "video/k053936.h"
#include "screen.h" #include "screen.h"
#include "tilemap.h" #include "tilemap.h"

View File

@ -87,10 +87,9 @@ Versions known to exist but not dumped:
#include "emu.h" #include "emu.h"
#include "cave.h" #include "cave.h"
#include "nmk112.h"
#include "cpu/m68000/m68000.h" #include "cpu/m68000/m68000.h"
#include "cpu/z80/z80.h" #include "cpu/z80/z80.h"
#include "machine/nmk112.h"
#include "machine/nvram.h" #include "machine/nvram.h"
#include "machine/watchdog.h" #include "machine/watchdog.h"
#include "sound/ymopm.h" #include "sound/ymopm.h"

View File

@ -11,16 +11,14 @@
***************************************************************************/ ***************************************************************************/
#include "tmap038.h"
#include "machine/eepromser.h" #include "machine/eepromser.h"
#include "machine/gen_latch.h" #include "machine/gen_latch.h"
#include "machine/timer.h" #include "machine/timer.h"
#include "sound/okim6295.h" #include "sound/okim6295.h"
#include "video/tmap038.h"
#include "emupal.h" #include "emupal.h"
#include "screen.h" #include "screen.h"
#include "tilemap.h"
class cave_state : public driver_device class cave_state : public driver_device
{ {

View File

@ -109,8 +109,7 @@ TODO:
#include "emu.h" #include "emu.h"
#include "freekick.h" #include "freekick.h"
#include "mc8123.h" #include "cpu/z80/mc8123.h"
#include "cpu/z80/z80.h" #include "cpu/z80/z80.h"
#include "machine/i8255.h" #include "machine/i8255.h"
#include "sound/sn76496.h" #include "sound/sn76496.h"

View File

@ -5,12 +5,10 @@
#pragma once #pragma once
#include "tmap038.h"
#include "machine/watchdog.h" #include "machine/watchdog.h"
#include "video/tmap038.h"
#include "emupal.h" #include "emupal.h"
#include "tilemap.h"
class mcatadv_state : public driver_device class mcatadv_state : public driver_device
{ {

View File

@ -200,12 +200,11 @@ Reference of music tempo:
#include "nmk004.h" #include "nmk004.h"
#include "nmk112.h"
#include "cpu/m68000/m68000.h" #include "cpu/m68000/m68000.h"
#include "cpu/pic16c5x/pic16c5x.h" #include "cpu/pic16c5x/pic16c5x.h"
#include "cpu/tlcs90/tlcs90.h" #include "cpu/tlcs90/tlcs90.h"
#include "cpu/z80/z80.h" #include "cpu/z80/z80.h"
#include "machine/nmk112.h"
#include "sound/okim6295.h" #include "sound/okim6295.h"
#include "sound/ymopm.h" #include "sound/ymopm.h"
#include "sound/ymopn.h" #include "sound/ymopn.h"

View File

@ -35,11 +35,10 @@ TODO:
#include "powerins.h" #include "powerins.h"
#include "nmk112.h"
#include "cpu/z80/z80.h" #include "cpu/z80/z80.h"
#include "cpu/m68000/m68000.h" #include "cpu/m68000/m68000.h"
#include "machine/gen_latch.h" #include "machine/gen_latch.h"
#include "machine/nmk112.h"
#include "sound/okim6295.h" #include "sound/okim6295.h"
#include "sound/ymopn.h" #include "sound/ymopn.h"
#include "speaker.h" #include "speaker.h"

View File

@ -5,7 +5,7 @@
#pragma once #pragma once
#include "nmk112.h" #include "machine/nmk112.h"
#include "tilemap.h" #include "tilemap.h"

View File

@ -21,8 +21,7 @@
#include "emu.h" #include "emu.h"
#include "mc8123.h" #include "cpu/z80/mc8123.h"
#include "cpu/z80/z80.h" #include "cpu/z80/z80.h"
#include "machine/i8255.h" #include "machine/i8255.h"
#include "machine/nvram.h" #include "machine/nvram.h"

View File

@ -11,7 +11,7 @@
#include "machine/eepromser.h" #include "machine/eepromser.h"
#include "315-6154.h" #include "315-6154.h"
#include "machine/idectrl.h" #include "machine/idectrl.h"
#include "gdrom.h" #include "bus/ata/gdrom.h"
// For ide gdrom controller // For ide gdrom controller

View File

@ -296,10 +296,10 @@ GND 8A 8B GND
#include "emu.h" #include "emu.h"
#include "segaipt.h" #include "segaipt.h"
#include "cpu/z80/mc8123.h"
#include "cpu/z80/z80.h" #include "cpu/z80/z80.h"
#include "machine/adc0804.h" #include "machine/adc0804.h"
#include "machine/i8255.h" #include "machine/i8255.h"
#include "mc8123.h"
#include "machine/rescap.h" #include "machine/rescap.h"
#include "segacrp2_device.h" #include "segacrp2_device.h"
#include "machine/upd4701.h" #include "machine/upd4701.h"

View File

@ -873,7 +873,7 @@ S11 S13 S15 S17 |EPR12194 - - - EPR12195 - -
#include "segas16b.h" #include "segas16b.h"
#include "segaipt.h" #include "segaipt.h"
#include "mc8123.h" #include "cpu/z80/mc8123.h"
#include "sound/okim6295.h" #include "sound/okim6295.h"
#include "speaker.h" #include "speaker.h"

View File

@ -306,9 +306,9 @@ seem to have access to.
#include "emu.h" #include "emu.h"
#include "system1.h" #include "system1.h"
#include "mc8123.h"
#include "segacrpt_device.h" #include "segacrpt_device.h"
#include "cpu/z80/mc8123.h"
#include "sound/sn76496.h" #include "sound/sn76496.h"
#include "speaker.h" #include "speaker.h"

View File

@ -50,8 +50,8 @@
#include "dccons.h" #include "dccons.h"
#include "dc-ctrl.h" #include "dc-ctrl.h"
#include "gdrom.h"
#include "bus/ata/gdrom.h"
#include "cpu/arm7/arm7.h" #include "cpu/arm7/arm7.h"
#include "cpu/arm7/arm7core.h" #include "cpu/arm7/arm7core.h"
#include "cpu/sh/sh4.h" #include "cpu/sh/sh4.h"

View File

@ -6,7 +6,6 @@
#pragma once #pragma once
#include "dc.h" #include "dc.h"
#include "gdrom.h"
#include "bus/ata/ataintf.h" #include "bus/ata/ataintf.h"
#include "imagedev/chd_cd.h" #include "imagedev/chd_cd.h"

View File

@ -153,8 +153,7 @@ TODO:
#include "emu.h" #include "emu.h"
#include "ninjakd2.h" #include "ninjakd2.h"
#include "mc8123.h" #include "cpu/z80/mc8123.h"
#include "cpu/z80/z80.h" #include "cpu/z80/z80.h"
#include "machine/gen_latch.h" #include "machine/gen_latch.h"

View File

@ -7,11 +7,10 @@
#include "vsystem_spr.h" #include "vsystem_spr.h"
#include "k053936.h"
#include "cpu/z80/z80.h" #include "cpu/z80/z80.h"
#include "machine/gen_latch.h" #include "machine/gen_latch.h"
#include "video/bufsprite.h" #include "video/bufsprite.h"
#include "video/k053936.h"
#include "emupal.h" #include "emupal.h"
#include "tilemap.h" #include "tilemap.h"

View File

@ -8,10 +8,9 @@
#include "vsystem_spr.h" #include "vsystem_spr.h"
#include "vsystem_spr2.h" #include "vsystem_spr2.h"
#include "k053936.h"
#include "machine/6850acia.h" #include "machine/6850acia.h"
#include "machine/gen_latch.h" #include "machine/gen_latch.h"
#include "video/k053936.h"
#include "emupal.h" #include "emupal.h"
#include "tilemap.h" #include "tilemap.h"

View File

@ -12,9 +12,8 @@
#include "vsystem_spr.h" #include "vsystem_spr.h"
#include "k053936.h"
#include "machine/gen_latch.h" #include "machine/gen_latch.h"
#include "video/k053936.h"
#include "tilemap.h" #include "tilemap.h"

View File

@ -18,13 +18,12 @@
#include "vsystem_gga.h" #include "vsystem_gga.h"
#include "k051316.h"
#include "cpu/m68000/m68000.h" #include "cpu/m68000/m68000.h"
#include "cpu/z80/z80.h" #include "cpu/z80/z80.h"
#include "machine/6850acia.h" #include "machine/6850acia.h"
#include "machine/gen_latch.h" #include "machine/gen_latch.h"
#include "sound/ymopn.h" #include "sound/ymopn.h"
#include "video/k051316.h"
#include "emupal.h" #include "emupal.h"
#include "screen.h" #include "screen.h"