mirror of
https://github.com/holub/mame
synced 2025-06-05 12:26:35 +03:00
(MESS) vip: Moved expansion and byte I/O ports under emu/bus. (nw)
This commit is contained in:
parent
25f4c260a8
commit
d756fa8ec4
40
.gitattributes
vendored
40
.gitattributes
vendored
@ -613,6 +613,26 @@ src/emu/bus/s100/s100.c svneol=native#text/plain
|
||||
src/emu/bus/s100/s100.h svneol=native#text/plain
|
||||
src/emu/bus/s100/wunderbus.c svneol=native#text/plain
|
||||
src/emu/bus/s100/wunderbus.h svneol=native#text/plain
|
||||
src/emu/bus/vip/byteio.c svneol=native#text/plain
|
||||
src/emu/bus/vip/byteio.h svneol=native#text/plain
|
||||
src/emu/bus/vip/exp.c svneol=native#text/plain
|
||||
src/emu/bus/vip/exp.h svneol=native#text/plain
|
||||
src/emu/bus/vip/vp550.c svneol=native#text/plain
|
||||
src/emu/bus/vip/vp550.h svneol=native#text/plain
|
||||
src/emu/bus/vip/vp570.c svneol=native#text/plain
|
||||
src/emu/bus/vip/vp570.h svneol=native#text/plain
|
||||
src/emu/bus/vip/vp575.c svneol=native#text/plain
|
||||
src/emu/bus/vip/vp575.h svneol=native#text/plain
|
||||
src/emu/bus/vip/vp585.c svneol=native#text/plain
|
||||
src/emu/bus/vip/vp585.h svneol=native#text/plain
|
||||
src/emu/bus/vip/vp590.c svneol=native#text/plain
|
||||
src/emu/bus/vip/vp590.h svneol=native#text/plain
|
||||
src/emu/bus/vip/vp595.c svneol=native#text/plain
|
||||
src/emu/bus/vip/vp595.h svneol=native#text/plain
|
||||
src/emu/bus/vip/vp620.c svneol=native#text/plain
|
||||
src/emu/bus/vip/vp620.h svneol=native#text/plain
|
||||
src/emu/bus/vip/vp700.c svneol=native#text/plain
|
||||
src/emu/bus/vip/vp700.h svneol=native#text/plain
|
||||
src/emu/bus/wangpc/emb.c svneol=native#text/plain
|
||||
src/emu/bus/wangpc/emb.h svneol=native#text/plain
|
||||
src/emu/bus/wangpc/lic.c svneol=native#text/plain
|
||||
@ -8202,26 +8222,6 @@ src/mess/machine/victor9kb.c svneol=native#text/plain
|
||||
src/mess/machine/victor9kb.h svneol=native#text/plain
|
||||
src/mess/machine/vidbrain_exp.c svneol=native#text/plain
|
||||
src/mess/machine/vidbrain_exp.h svneol=native#text/plain
|
||||
src/mess/machine/vip_byteio.c svneol=native#text/plain
|
||||
src/mess/machine/vip_byteio.h svneol=native#text/plain
|
||||
src/mess/machine/vip_exp.c svneol=native#text/plain
|
||||
src/mess/machine/vip_exp.h svneol=native#text/plain
|
||||
src/mess/machine/vp550.c svneol=native#text/plain
|
||||
src/mess/machine/vp550.h svneol=native#text/plain
|
||||
src/mess/machine/vp570.c svneol=native#text/plain
|
||||
src/mess/machine/vp570.h svneol=native#text/plain
|
||||
src/mess/machine/vp575.c svneol=native#text/plain
|
||||
src/mess/machine/vp575.h svneol=native#text/plain
|
||||
src/mess/machine/vp585.c svneol=native#text/plain
|
||||
src/mess/machine/vp585.h svneol=native#text/plain
|
||||
src/mess/machine/vp590.c svneol=native#text/plain
|
||||
src/mess/machine/vp590.h svneol=native#text/plain
|
||||
src/mess/machine/vp595.c svneol=native#text/plain
|
||||
src/mess/machine/vp595.h svneol=native#text/plain
|
||||
src/mess/machine/vp620.c svneol=native#text/plain
|
||||
src/mess/machine/vp620.h svneol=native#text/plain
|
||||
src/mess/machine/vp700.c svneol=native#text/plain
|
||||
src/mess/machine/vp700.h svneol=native#text/plain
|
||||
src/mess/machine/vtech2.c svneol=native#text/plain
|
||||
src/mess/machine/wangpckb.c svneol=native#text/plain
|
||||
src/mess/machine/wangpckb.h svneol=native#text/plain
|
||||
|
@ -215,6 +215,26 @@ BUSOBJS += $(BUSOBJ)/s100/wunderbus.o
|
||||
endif
|
||||
|
||||
|
||||
#-------------------------------------------------
|
||||
#
|
||||
#@src/emu/bus/vip/byteio.h,BUSES += VIP
|
||||
#@src/emu/bus/vip/exp.h,BUSES += VIP
|
||||
#-------------------------------------------------
|
||||
|
||||
ifneq ($(filter VIP,$(BUSES)),)
|
||||
BUSOBJS += $(BUSOBJ)/vip/byteio.o
|
||||
BUSOBJS += $(BUSOBJ)/vip/vp620.o
|
||||
BUSOBJS += $(BUSOBJ)/vip/exp.o
|
||||
BUSOBJS += $(BUSOBJ)/vip/vp550.o
|
||||
BUSOBJS += $(BUSOBJ)/vip/vp570.o
|
||||
BUSOBJS += $(BUSOBJ)/vip/vp575.o
|
||||
BUSOBJS += $(BUSOBJ)/vip/vp585.o
|
||||
BUSOBJS += $(BUSOBJ)/vip/vp590.o
|
||||
BUSOBJS += $(BUSOBJ)/vip/vp595.o
|
||||
BUSOBJS += $(BUSOBJ)/vip/vp700.o
|
||||
endif
|
||||
|
||||
|
||||
#-------------------------------------------------
|
||||
#
|
||||
#@src/emu/bus/wangpc/wangpc.h,BUSES += WANGPC
|
||||
|
@ -9,7 +9,7 @@
|
||||
|
||||
**********************************************************************/
|
||||
|
||||
#include "machine/vip_byteio.h"
|
||||
#include "byteio.h"
|
||||
|
||||
|
||||
|
@ -127,7 +127,7 @@ extern const device_type VIP_BYTEIO_PORT;
|
||||
|
||||
|
||||
// slot devices
|
||||
#include "machine/vp620.h"
|
||||
#include "vp620.h"
|
||||
|
||||
SLOT_INTERFACE_EXTERN( vip_byteio_cards );
|
||||
|
@ -9,7 +9,7 @@
|
||||
|
||||
**********************************************************************/
|
||||
|
||||
#include "machine/vip_exp.h"
|
||||
#include "exp.h"
|
||||
|
||||
|
||||
|
@ -159,13 +159,13 @@ extern const device_type VIP_EXPANSION_SLOT;
|
||||
|
||||
|
||||
// slot devices
|
||||
#include "machine/vp550.h"
|
||||
#include "machine/vp570.h"
|
||||
#include "machine/vp575.h"
|
||||
#include "machine/vp585.h"
|
||||
#include "machine/vp590.h"
|
||||
#include "machine/vp595.h"
|
||||
#include "machine/vp700.h"
|
||||
#include "vp550.h"
|
||||
#include "vp570.h"
|
||||
#include "vp575.h"
|
||||
#include "vp585.h"
|
||||
#include "vp590.h"
|
||||
#include "vp595.h"
|
||||
#include "vp700.h"
|
||||
|
||||
SLOT_INTERFACE_EXTERN( vip_expansion_cards );
|
||||
|
@ -15,7 +15,7 @@
|
||||
#define __VP550__
|
||||
|
||||
#include "emu.h"
|
||||
#include "machine/vip_exp.h"
|
||||
#include "exp.h"
|
||||
#include "sound/cdp1863.h"
|
||||
|
||||
|
@ -15,7 +15,7 @@
|
||||
#define __VP570__
|
||||
|
||||
#include "emu.h"
|
||||
#include "machine/vip_exp.h"
|
||||
#include "exp.h"
|
||||
|
||||
|
||||
|
@ -15,7 +15,7 @@
|
||||
#define __VP575__
|
||||
|
||||
#include "emu.h"
|
||||
#include "machine/vip_exp.h"
|
||||
#include "exp.h"
|
||||
|
||||
|
||||
|
@ -15,7 +15,7 @@
|
||||
#define __VP585__
|
||||
|
||||
#include "emu.h"
|
||||
#include "machine/vip_exp.h"
|
||||
#include "exp.h"
|
||||
|
||||
|
||||
|
@ -16,7 +16,7 @@
|
||||
|
||||
#include "emu.h"
|
||||
#include "machine/rescap.h"
|
||||
#include "machine/vip_exp.h"
|
||||
#include "exp.h"
|
||||
#include "video/cdp1862.h"
|
||||
|
||||
|
@ -15,7 +15,7 @@
|
||||
#define __VP595__
|
||||
|
||||
#include "emu.h"
|
||||
#include "machine/vip_exp.h"
|
||||
#include "exp.h"
|
||||
#include "sound/cdp1863.h"
|
||||
|
||||
|
@ -15,8 +15,8 @@
|
||||
#define __VP620__
|
||||
|
||||
#include "emu.h"
|
||||
#include "byteio.h"
|
||||
#include "machine/keyboard.h"
|
||||
#include "machine/vip_byteio.h"
|
||||
|
||||
|
||||
|
@ -15,7 +15,7 @@
|
||||
#define __VP700__
|
||||
|
||||
#include "emu.h"
|
||||
#include "machine/vip_exp.h"
|
||||
#include "exp.h"
|
||||
#include "sound/cdp1863.h"
|
||||
|
||||
|
@ -36,6 +36,7 @@ OBJDIRS += \
|
||||
$(EMUOBJ)/bus/ieee488 \
|
||||
$(EMUOBJ)/bus/isbx \
|
||||
$(EMUOBJ)/bus/s100 \
|
||||
$(EMUOBJ)/bus/vip \
|
||||
$(EMUOBJ)/bus/wangpc \
|
||||
$(EMUOBJ)/drivers \
|
||||
$(EMUOBJ)/machine \
|
||||
|
@ -6,12 +6,12 @@
|
||||
#define __VIP__
|
||||
|
||||
#include "emu.h"
|
||||
#include "bus/vip/byteio.h"
|
||||
#include "bus/vip/exp.h"
|
||||
#include "cpu/cosmac/cosmac.h"
|
||||
#include "imagedev/cassette.h"
|
||||
#include "imagedev/snapquik.h"
|
||||
#include "machine/ram.h"
|
||||
#include "machine/vip_byteio.h"
|
||||
#include "machine/vip_exp.h"
|
||||
#include "sound/discrete.h"
|
||||
#include "video/cdp1861.h"
|
||||
|
||||
|
@ -485,6 +485,7 @@ BUSES += COMX35
|
||||
BUSES += IEEE488
|
||||
BUSES += ISBX
|
||||
BUSES += S100
|
||||
BUSES += VIP
|
||||
BUSES += WANGPC
|
||||
|
||||
#-------------------------------------------------
|
||||
@ -1770,16 +1771,6 @@ $(MESSOBJ)/rca.a: \
|
||||
$(MESS_DRIVERS)/microkit.o \
|
||||
$(MESS_DRIVERS)/studio2.o \
|
||||
$(MESS_DRIVERS)/vip.o \
|
||||
$(MESS_MACHINE)/vip_byteio.o\
|
||||
$(MESS_MACHINE)/vip_exp.o \
|
||||
$(MESS_MACHINE)/vp550.o \
|
||||
$(MESS_MACHINE)/vp570.o \
|
||||
$(MESS_MACHINE)/vp575.o \
|
||||
$(MESS_MACHINE)/vp585.o \
|
||||
$(MESS_MACHINE)/vp590.o \
|
||||
$(MESS_MACHINE)/vp595.o \
|
||||
$(MESS_MACHINE)/vp620.o \
|
||||
$(MESS_MACHINE)/vp700.o \
|
||||
|
||||
$(MESSOBJ)/rm.a: \
|
||||
$(MESS_DRIVERS)/rm380z.o \
|
||||
|
Loading…
Reference in New Issue
Block a user