diff options
author | 2008-09-25 16:21:35 +0000 | |
---|---|---|
committer | 2008-09-25 16:21:35 +0000 | |
commit | 9b72b5abc479bb16944db43241072d15740b6f25 (patch) | |
tree | 029124c77bef8577a90f788217c95618ef3abdb8 /src/emu/emu.mak | |
parent | e4dc04a323f064827f58eb6774299ed32ca9ecf0 (diff) |
Added 22VP931 emulation, which is mostly working. Communication works
fine and basic searching/playback/skipping is functional. Still a bit
glitchy.
Firefox improvements:
- removed need for deprecat.h
- memory map is complete from schematics
- gutted laserdisc hacks in favor of actual laserdisc implementation
- fixed all CPU and sound clocks
Removed old laserdsc.c implementation.
Added generic timer devices, which simply allocate a timer but don't
prime it. This is the preferred method for allocating timers, and may
eventually be the only mechanism for doing so in the future.
Diffstat (limited to 'src/emu/emu.mak')
-rw-r--r-- | src/emu/emu.mak | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/emu/emu.mak b/src/emu/emu.mak index fc6bd516870..09031760fe7 100644 --- a/src/emu/emu.mak +++ b/src/emu/emu.mak @@ -142,6 +142,7 @@ EMUMACHINEOBJS = \ $(EMUMACHINE)/ldcore.o \ $(EMUMACHINE)/ldpr8210.o \ $(EMUMACHINE)/ldv1000.o \ + $(EMUMACHINE)/ldvp931.o \ $(EMUMACHINE)/mb3773.o \ $(EMUMACHINE)/mb87078.o \ $(EMUMACHINE)/mc146818.o \ |