diff options
author | 2018-09-08 18:03:04 +0200 | |
---|---|---|
committer | 2018-09-08 18:03:15 +0200 | |
commit | a24d9ab6aef66a0b11708be73db1b1c1ee84cf76 (patch) | |
tree | 333a7b4db0af4ab3a2427b53f21bc4466cb4c68d /scripts/src/machine.lua | |
parent | c0b70ec30646ca6e6af9808eb8b965d82ffa4e44 (diff) |
-am79c90: Added rudimentary AMD 79C90 LANCE ethernet controller support, enough to make sun4 happy. [Ryan Holtz]
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 af0d98782a9..7c1cc8e66ca 100644 --- a/scripts/src/machine.lua +++ b/scripts/src/machine.lua @@ -612,6 +612,18 @@ end --------------------------------------------------- -- +--@src/devices/machine/am79c90.h,MACHINES["AM79C90"] = true +--------------------------------------------------- + +if (MACHINES["AM79C90"]~=null) then + files { + MAME_DIR .. "src/devices/machine/am79c90.cpp", + MAME_DIR .. "src/devices/machine/am79c90.h", + } +end + +--------------------------------------------------- +-- --@src/devices/machine/am9513.h,MACHINES["AM9513"] = true --------------------------------------------------- |