diff options
author | 2020-08-30 21:22:32 -0400 | |
---|---|---|
committer | 2020-08-31 11:22:32 +1000 | |
commit | 49466dc4ad10d6895a8111c136f8be482e243e95 (patch) | |
tree | 4e1410dfc706cc505d6b29d796aabaf32e888b58 /scripts/src/machine.lua | |
parent | 7a93c921fd7fa2ec837f8f70f6afebe0df74284d (diff) |
bus/a2bus: Added Uthernet card emulation for Apple IIgs (#7090)
* Ported Cirrus Logic CS8900A Crystal LAN MAC emulation from VICE and hooked it up to Apple II card device.
* Adds Ethernet networking support for Apple IIgs.
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 87958503bef..a4751370c7d 100644 --- a/scripts/src/machine.lua +++ b/scripts/src/machine.lua @@ -1021,6 +1021,19 @@ end --------------------------------------------------- -- +--@src/devices/machine/cs8900a.h,MACHINES["CS8900A"] = true +--------------------------------------------------- + +if (MACHINES["CS8900A"]~=null) then + files { + MAME_DIR .. "src/devices/machine/cs8900a.cpp", + MAME_DIR .. "src/devices/machine/cs8900a.h", + } +end + + +--------------------------------------------------- +-- --@src/devices/machine/cxd1095.h,MACHINES["CXD1095"] = true --------------------------------------------------- |