diff options
author | 2019-06-05 04:40:56 +0200 | |
---|---|---|
committer | 2019-06-05 04:41:21 +0200 | |
commit | 8689ada5a3fc34f07d3d0971ef57f78c8097e1c6 (patch) | |
tree | 3140a03bf7ccdb7d8679731618a4bf84efab8905 /scripts/src | |
parent | f779db85dfcc71c49b36349503717dbd43973f2c (diff) |
-am2910: Added prelminary, largely-untested Am2910 Microprogram Controller device emulation. [Ryan Holtz]
-dpb7000: Initial pass at Disk Sequencer Card emulation. Needs debugging. [Ryan Holtz, Mark Nias]
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 62433da41f2..a456bf31ef8 100644 --- a/scripts/src/machine.lua +++ b/scripts/src/machine.lua @@ -612,6 +612,18 @@ end --------------------------------------------------- -- +--@src/devices/machine/am2910.h,MACHINES["AM2910"] = true +--------------------------------------------------- + +if (MACHINES["AM2910"]~=null) then + files { + MAME_DIR .. "src/devices/machine/am2910.cpp", + MAME_DIR .. "src/devices/machine/am2910.h", + } +end + +--------------------------------------------------- +-- --@src/devices/machine/am53cf96.h,MACHINES["AM53CF96"] = true --------------------------------------------------- |