diff options
author | 2016-07-06 20:45:59 +0200 | |
---|---|---|
committer | 2016-07-06 20:45:59 +0200 | |
commit | 1459d8316c63ec25625a6c3577d6c4298f6d24eb (patch) | |
tree | 939080d2fbe349568c8fe02c5d314fb7634f0831 /scripts/src/machine.lua | |
parent | bb15b6725e42abbcdb263a72c879980471d7a2a8 (diff) |
New device: FGA-002 Force Gate Array, splitted out from fccpu30 driver, mostly a skeleton but most registers can be written and read back, 8 bit timer is implemented
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 7ddf031d76d..a4e3a9032cc 100644 --- a/scripts/src/machine.lua +++ b/scripts/src/machine.lua @@ -796,6 +796,18 @@ end --------------------------------------------------- -- +--@src/devices/machine/fga002.h,MACHINES["FGA002"] = true +--------------------------------------------------- + +if (MACHINES["FGA002"]~=null) then + files { + MAME_DIR .. "src/devices/machine/fga002.cpp", + MAME_DIR .. "src/devices/machine/fga002.h", + } +end + +--------------------------------------------------- +-- --@src/devices/machine/hd63450.h,MACHINES["HD63450"] = true --------------------------------------------------- |