diff options
| author | 2018-10-18 18:00:02 +0700 | |
|---|---|---|
| committer | 2018-10-18 18:00:02 +0700 | |
| commit | cea5bbace487abdaa98256d794be347192873b19 (patch) | |
| tree | a12e68d3c5842f289c989473f8359ca2159c8fea /scripts | |
| 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')
| -rw-r--r-- | scripts/src/machine.lua | 12 | ||||
| -rw-r--r-- | scripts/target/mame/mess.lua | 1 |
2 files changed, 13 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 diff --git a/scripts/target/mame/mess.lua b/scripts/target/mame/mess.lua index d0f914e1034..72c2dc1aace 100644 --- a/scripts/target/mame/mess.lua +++ b/scripts/target/mame/mess.lua @@ -671,6 +671,7 @@ MACHINES["IOPDMA"] = true MACHINES["IOPINTC"] = true MACHINES["IOPSIO2"] = true MACHINES["IOPTIMER"] = true +MACHINES["Z8038"] = true -------------------------------------------------- -- specify available bus cores |
