mirror of
https://github.com/holub/mame
synced 2025-07-02 00:29:37 +03:00
(MESS) Moved video chips to emu/video. (nw)
This commit is contained in:
parent
4bba3f6e42
commit
7fc71a616f
10
.gitattributes
vendored
10
.gitattributes
vendored
@ -1,6 +1,8 @@
|
||||
* text=auto !eol
|
||||
artwork/aperture.png -text svneol=unset#image/png
|
||||
artwork/white.png -text svneol=unset#image/png
|
||||
/depend_emu.mak svneol=native#text/plain
|
||||
/depend_mess.mak svneol=native#text/plain
|
||||
docs/SDL.txt svneol=native#text/plain
|
||||
docs/config.txt svneol=native#text/plain
|
||||
docs/floppy.txt svneol=native#text/plain
|
||||
@ -3061,6 +3063,8 @@ src/emu/video/mc6845.c svneol=native#text/plain
|
||||
src/emu/video/mc6845.h svneol=native#text/plain
|
||||
src/emu/video/mc6847.c svneol=native#text/plain
|
||||
src/emu/video/mc6847.h svneol=native#text/plain
|
||||
src/emu/video/msm6222b.c svneol=native#text/plain
|
||||
src/emu/video/msm6222b.h svneol=native#text/plain
|
||||
src/emu/video/msm6255.c svneol=native#text/plain
|
||||
src/emu/video/msm6255.h svneol=native#text/plain
|
||||
src/emu/video/pc_cga.c svneol=native#text/plain
|
||||
@ -3083,6 +3087,8 @@ src/emu/video/rgbutil.h svneol=native#text/plain
|
||||
src/emu/video/rgbvmx.h svneol=native#text/plain
|
||||
src/emu/video/saa5050.c svneol=native#text/plain
|
||||
src/emu/video/saa5050.h svneol=native#text/plain
|
||||
src/emu/video/sed1200.c svneol=native#text/plain
|
||||
src/emu/video/sed1200.h svneol=native#text/plain
|
||||
src/emu/video/sed1330.c svneol=native#text/plain
|
||||
src/emu/video/sed1330.h svneol=native#text/plain
|
||||
src/emu/video/sed1520.c svneol=native#text/plain
|
||||
@ -8420,8 +8426,6 @@ src/mess/machine/micropolis.c svneol=native#text/plain
|
||||
src/mess/machine/micropolis.h svneol=native#text/plain
|
||||
src/mess/machine/microtan.c svneol=native#text/plain
|
||||
src/mess/machine/mikro80.c svneol=native#text/plain
|
||||
src/mess/machine/msm6222b.c svneol=native#text/plain
|
||||
src/mess/machine/msm6222b.h svneol=native#text/plain
|
||||
src/mess/machine/msx.c svneol=native#text/plain
|
||||
src/mess/machine/msx_slot.c svneol=native#text/plain
|
||||
src/mess/machine/mtx.c svneol=native#text/plain
|
||||
@ -8501,8 +8505,6 @@ src/mess/machine/s3c44b0.h svneol=native#text/plain
|
||||
src/mess/machine/sa1403d.c svneol=native#text/plain
|
||||
src/mess/machine/sa1403d.h svneol=native#text/plain
|
||||
src/mess/machine/samcoupe.c svneol=native#text/plain
|
||||
src/mess/machine/sed1200.c svneol=native#text/plain
|
||||
src/mess/machine/sed1200.h svneol=native#text/plain
|
||||
src/mess/machine/sgi.c svneol=native#text/plain
|
||||
src/mess/machine/sgi.h svneol=native#text/plain
|
||||
src/mess/machine/smartmed.c svneol=native#text/plain
|
||||
|
11200
depend_emu.mak
Normal file
11200
depend_emu.mak
Normal file
File diff suppressed because it is too large
Load Diff
17402
depend_mess.mak
Normal file
17402
depend_mess.mak
Normal file
File diff suppressed because it is too large
Load Diff
@ -318,6 +318,15 @@ ifneq ($(filter MC6847,$(VIDEOS)),)
|
||||
VIDEOOBJS+= $(VIDEOOBJ)/mc6847.o
|
||||
endif
|
||||
|
||||
#-------------------------------------------------
|
||||
#
|
||||
#@src/emu/video/msm6222b.h,VIDEOS += MSM6222B
|
||||
#-------------------------------------------------
|
||||
|
||||
ifneq ($(filter MSM6222B,$(VIDEOS)),)
|
||||
VIDEOOBJS+= $(VIDEOOBJ)/msm6222b.o
|
||||
endif
|
||||
|
||||
#-------------------------------------------------
|
||||
#
|
||||
#@src/emu/video/msm6255.h,VIDEOS += MSM6255
|
||||
@ -382,6 +391,14 @@ ifneq ($(filter SAA5050,$(VIDEOS)),)
|
||||
VIDEOOBJS+= $(VIDEOOBJ)/saa5050.o
|
||||
endif
|
||||
|
||||
#-------------------------------------------------
|
||||
#
|
||||
#@src/emu/video/sed1200.h,VIDEOS += SED1200
|
||||
#-------------------------------------------------
|
||||
ifneq ($(filter SED1200,$(VIDEOS)),)
|
||||
VIDEOOBJS+= $(VIDEOOBJ)/sed1200.o
|
||||
endif
|
||||
|
||||
#-------------------------------------------------
|
||||
#
|
||||
#@src/emu/video/sed1330.h,VIDEOS += SED1330
|
||||
|
@ -18,7 +18,7 @@
|
||||
#include "emu.h"
|
||||
#include "machine/ram.h"
|
||||
#include "machine/nvram.h"
|
||||
#include "machine/msm6222b.h"
|
||||
#include "video/msm6222b.h"
|
||||
#include "cpu/mcs96/i8x9x.h"
|
||||
|
||||
static INPUT_PORTS_START( d110 )
|
||||
|
@ -160,7 +160,7 @@ Notes: (All IC's listed for completeness)
|
||||
|
||||
#include "emu.h"
|
||||
#include "machine/ram.h"
|
||||
#include "machine/sed1200.h"
|
||||
#include "video/sed1200.h"
|
||||
#include "cpu/mcs96/i8x9x.h"
|
||||
|
||||
static INPUT_PORTS_START( mt32 )
|
||||
|
@ -286,6 +286,7 @@ VIDEOS += I8275
|
||||
#VIDEOS += MB90082
|
||||
VIDEOS += MC6845
|
||||
VIDEOS += MC6847
|
||||
VIDEOS += MSM6222B
|
||||
VIDEOS += MSM6255
|
||||
VIDEOS += PC_CGA
|
||||
VIDEOS += PC_VGA
|
||||
@ -294,6 +295,7 @@ VIDEOS += PSX
|
||||
VIDEOS += RAMDAC
|
||||
VIDEOS += S2636
|
||||
VIDEOS += SAA5050
|
||||
VIDEOS += SED1200
|
||||
VIDEOS += SED1330
|
||||
VIDEOS += SED1520
|
||||
VIDEOS += STVVDP
|
||||
@ -830,12 +832,10 @@ $(MESSOBJ)/shared.a: \
|
||||
$(MESS_MACHINE)/kr2376.o \
|
||||
$(MESS_MACHINE)/mb8795.o \
|
||||
$(MESS_MACHINE)/microdrv.o \
|
||||
$(MESS_MACHINE)/msm6222b.o \
|
||||
$(MESS_MACHINE)/ncr5380.o \
|
||||
$(MESS_MACHINE)/ncr5390.o \
|
||||
$(MESS_MACHINE)/s1410.o \
|
||||
$(MESS_MACHINE)/sa1403d.o \
|
||||
$(MESS_MACHINE)/sed1200.o \
|
||||
$(MESS_MACHINE)/smartmed.o \
|
||||
$(MESS_MACHINE)/strata.o \
|
||||
$(MESS_MACHINE)/smc92x4.o \
|
||||
|
Loading…
Reference in New Issue
Block a user