mirror of
https://github.com/holub/mame
synced 2025-04-20 23:42:22 +03:00
(MESS) Move corvushd to emu/ so slot devices can see it (nw)
This commit is contained in:
parent
c441cc3ef7
commit
ca5bc06cff
4
.gitattributes
vendored
4
.gitattributes
vendored
@ -2284,6 +2284,8 @@ src/emu/machine/clock.c svneol=native#text/plain
|
||||
src/emu/machine/clock.h svneol=native#text/plain
|
||||
src/emu/machine/com8116.c svneol=native#text/plain
|
||||
src/emu/machine/com8116.h svneol=native#text/plain
|
||||
src/emu/machine/corvushd.c svneol=native#text/plain
|
||||
src/emu/machine/corvushd.h svneol=native#text/plain
|
||||
src/emu/machine/cr589.c svneol=native#text/plain
|
||||
src/emu/machine/cr589.h svneol=native#text/plain
|
||||
src/emu/machine/cs4031.c svneol=native#text/plain
|
||||
@ -8073,7 +8075,6 @@ src/mess/includes/compis.h svneol=native#text/plain
|
||||
src/mess/includes/comquest.h svneol=native#text/plain
|
||||
src/mess/includes/comx35.h svneol=native#text/plain
|
||||
src/mess/includes/concept.h svneol=native#text/plain
|
||||
src/mess/includes/corvushd.h svneol=native#text/plain
|
||||
src/mess/includes/cosmicos.h svneol=native#text/plain
|
||||
src/mess/includes/crvision.h svneol=native#text/plain
|
||||
src/mess/includes/cxhumax.h svneol=native#text/plain
|
||||
@ -8412,7 +8413,6 @@ src/mess/machine/compiskb.h svneol=native#text/plain
|
||||
src/mess/machine/concept.c svneol=native#text/plain
|
||||
src/mess/machine/concept_exp.c svneol=native#text/plain
|
||||
src/mess/machine/concept_exp.h svneol=native#text/plain
|
||||
src/mess/machine/corvushd.c svneol=native#text/plain
|
||||
src/mess/machine/cuda.c svneol=native#text/plain
|
||||
src/mess/machine/cuda.h svneol=native#text/plain
|
||||
src/mess/machine/cx4data.inc svneol=native#text/plain
|
||||
|
@ -19,7 +19,7 @@
|
||||
#include "machine/i8251.h"
|
||||
#include "machine/i8255.h"
|
||||
#include "imagedev/harddriv.h"
|
||||
#include "includes/corvushd.h"
|
||||
#include "machine/corvushd.h"
|
||||
|
||||
|
||||
|
||||
|
@ -18,7 +18,7 @@
|
||||
#include "bus/rs232/rs232.h"
|
||||
#include "cpu/z80/z80.h"
|
||||
#include "imagedev/harddriv.h"
|
||||
#include "includes/corvushd.h"
|
||||
#include "machine/corvushd.h"
|
||||
#include "machine/com8116.h"
|
||||
#include "machine/i8251.h"
|
||||
#include "machine/i8255.h"
|
||||
|
@ -64,7 +64,7 @@
|
||||
|
||||
#include "emu.h"
|
||||
#include "imagedev/harddriv.h"
|
||||
#include "includes/corvushd.h"
|
||||
#include "machine/corvushd.h"
|
||||
#include <ctype.h>
|
||||
|
||||
|
@ -1838,3 +1838,12 @@ endif
|
||||
ifneq ($(filter STRATA,$(MACHINES)),)
|
||||
MACHINEOBJS += $(MACHINEOBJ)/strata.o
|
||||
endif
|
||||
|
||||
#-------------------------------------------------
|
||||
#
|
||||
#@src/emu/machine/corvushd.h,MACHINES += CORVUSHD
|
||||
#-------------------------------------------------
|
||||
ifneq ($(filter CORVUSHD,$(MACHINES)),)
|
||||
MACHINEOBJS += $(MACHINEOBJ)/corvushd.o
|
||||
endif
|
||||
|
||||
|
@ -10,7 +10,7 @@
|
||||
#include "bus/imi7000/imi7000.h"
|
||||
#include "cpu/z80/z80.h"
|
||||
#include "imagedev/harddriv.h"
|
||||
#include "includes/corvushd.h"
|
||||
#include "machine/corvushd.h"
|
||||
#include "machine/com8116.h"
|
||||
#include "machine/i8251.h"
|
||||
#include "machine/i8255.h"
|
||||
|
@ -514,6 +514,7 @@ MACHINES += Z8536
|
||||
MACHINES += SMC92X4
|
||||
MACHINES += TI99_HD
|
||||
MACHINES += STRATA
|
||||
MACHINES += CORVUSHD
|
||||
|
||||
#-------------------------------------------------
|
||||
# specify available bus cores
|
||||
@ -1112,7 +1113,6 @@ $(MESSOBJ)/concept.a: \
|
||||
$(MESS_DRIVERS)/concept.o \
|
||||
$(MESS_MACHINE)/concept.o \
|
||||
$(MESS_MACHINE)/concept_exp.o \
|
||||
$(MESS_MACHINE)/corvushd.o \
|
||||
|
||||
$(MESSOBJ)/conitec.a: \
|
||||
$(MESS_DRIVERS)/prof80.o \
|
||||
|
Loading…
Reference in New Issue
Block a user