diff options
| author | 2017-11-16 19:53:02 +0700 | |
|---|---|---|
| committer | 2017-11-16 23:53:02 +1100 | |
| commit | f87cc5c6714ffe8e06ecf199f669e4dbcf4fffc0 (patch) | |
| tree | 45eef2cf5fad8ae451ffa6a7bf97f11ae08c9df7 /scripts | |
| parent | 62c9bcc660ca694f226178d50416cbe201bebf77 (diff) | |
28fxxx: initial commit for new flash memory device (#2805)
Implementation of 28F010 and family flash memory devices. These are not compatible with the JEDEC-standard flash command protocol implemented in intelfsh.
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 cedd7a02e55..085d59d01c6 100644 --- a/scripts/src/machine.lua +++ b/scripts/src/machine.lua @@ -3301,3 +3301,15 @@ if (MACHINES["ADC0844"]~=null) then MAME_DIR .. "src/devices/machine/adc0844.h", } end + +--------------------------------------------------- +-- +--@src/devices/machine/28fxxx.h,MACHINES["28FXXX"] = true +--------------------------------------------------- + +if (MACHINES["28FXXX"]~=null) then + files { + MAME_DIR .. "src/devices/machine/28fxxx.cpp", + MAME_DIR .. "src/devices/machine/28fxxx.h", + } +end diff --git a/scripts/target/mame/mess.lua b/scripts/target/mame/mess.lua index 6e7df8aa1cd..1f35d3bb525 100644 --- a/scripts/target/mame/mess.lua +++ b/scripts/target/mame/mess.lua @@ -619,6 +619,7 @@ MACHINES["I82586"] = true MACHINES["INPUT_MERGER"] = true -- MACHINES["K054321"] = true MACHINES["ADC0844"] = true +MACHINES["28FXXX"] = true -------------------------------------------------- -- specify available bus cores |
