diff options
author | 2018-10-18 18:00:02 +0700 | |
---|---|---|
committer | 2018-10-18 18:00:02 +0700 | |
commit | cea5bbace487abdaa98256d794be347192873b19 (patch) | |
tree | a12e68d3c5842f289c989473f8359ca2159c8fea /scripts/src/machine.lua | |
parent | ece4404b691fc92f50c29c0e34bcdf0499fe8cbf (diff) |
z8038: new device (nw)
Zilog Z8038 FIO (FIFO Input/Output Interface Unit). Used to drive the parallel/printer port on the MIPS Rx2030. Passes basic diagnostic tests, but further work depends on progress in the mips.cpp driver.
Diffstat (limited to 'scripts/src/machine.lua')
-rw-r--r-- | scripts/src/machine.lua | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/scripts/src/machine.lua b/scripts/src/machine.lua index 03ee38c0c90..ce7c2813b8f 100644 --- a/scripts/src/machine.lua +++ b/scripts/src/machine.lua @@ -3795,3 +3795,15 @@ if (MACHINES["SUN4C_MMU"]~=null) then MAME_DIR .. "src/devices/machine/sun4c_mmu.h", } end + +--------------------------------------------------- +-- +--@src/devices/machine/z8038.h,MACHINES["Z8038"] = true +--------------------------------------------------- + +if (MACHINES["Z8038"]~=null) then + files { + MAME_DIR .. "src/devices/machine/z8038.cpp", + MAME_DIR .. "src/devices/machine/z8038.h", + } +end |