diff options
author | 2023-05-30 02:29:30 +0200 | |
---|---|---|
committer | 2023-05-30 02:29:30 +0200 | |
commit | 892cfe410bc0d3ba431ed3736816d428c26e3aac (patch) | |
tree | 73777fd6e674426e88be14474666fc2bffa003dc /scripts/src/machine.lua | |
parent | 93888542d26c2d3083bb816375740f6af3810059 (diff) |
pc/pcipc.cpp: derive a very preliminary i440bx AGP target from savquest BIOS
machine/w83977tf.cpp: preliminary Super I/O PoC
Diffstat (limited to 'scripts/src/machine.lua')
-rw-r--r-- | scripts/src/machine.lua | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/scripts/src/machine.lua b/scripts/src/machine.lua index 1aa9da2fd2c..c093d9c518d 100644 --- a/scripts/src/machine.lua +++ b/scripts/src/machine.lua @@ -4363,6 +4363,19 @@ end --------------------------------------------------- -- +--@src/devices/machine/w83977tf.h,MACHINES["W83977TF"] = true +--------------------------------------------------- + +if (MACHINES["W83977TF"]~=null) then + files { + MAME_DIR .. "src/devices/machine/w83977tf.cpp", + MAME_DIR .. "src/devices/machine/w83977tf.h", + } +end + + +--------------------------------------------------- +-- --@src/devices/machine/pdc.h,MACHINES["PDC"] = true --------------------------------------------------- |