diff options
author | 2017-11-16 19:53:02 +0700 | |
---|---|---|
committer | 2017-11-16 23:53:02 +1100 | |
commit | f87cc5c6714ffe8e06ecf199f669e4dbcf4fffc0 (patch) | |
tree | 45eef2cf5fad8ae451ffa6a7bf97f11ae08c9df7 /scripts/src/machine.lua | |
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/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 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 |