diff options
author | 2016-03-30 23:49:08 +0200 | |
---|---|---|
committer | 2016-03-30 23:50:39 +0200 | |
commit | ee6684ac85add808675176f0ff2a69b46f103506 (patch) | |
tree | 2deb501e0f1075205aa2cb5e8255e4138aed6d43 /scripts/src | |
parent | 228004075bc70fcf6738acfc488db6f1db38e195 (diff) |
New GROM implementation (TMC0430) with (almost) precise clock behavior
Diffstat (limited to 'scripts/src')
-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 009b75c6e7d..4499f93ef1f 100644 --- a/scripts/src/machine.lua +++ b/scripts/src/machine.lua @@ -2086,6 +2086,18 @@ end --------------------------------------------------- -- +--@src/devices/machine/tmc0430.h,MACHINES["TMC0430"] = true +--------------------------------------------------- + +if (MACHINES["TMC0430"]~=null) then + files { + MAME_DIR .. "src/devices/machine/tmc0430.cpp", + MAME_DIR .. "src/devices/machine/tmc0430.h", + } +end + +--------------------------------------------------- +-- --@src/devices/machine/tmp68301.h,MACHINES["TMP68301"] = true --------------------------------------------------- |