diff options
author | 2020-08-30 21:22:32 -0400 | |
---|---|---|
committer | 2020-08-31 11:22:32 +1000 | |
commit | 49466dc4ad10d6895a8111c136f8be482e243e95 (patch) | |
tree | 4e1410dfc706cc505d6b29d796aabaf32e888b58 /scripts | |
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')
-rw-r--r-- | scripts/src/bus.lua | 2 | ||||
-rw-r--r-- | scripts/src/machine.lua | 13 | ||||
-rw-r--r-- | scripts/target/mame/mess.lua | 1 |
3 files changed, 16 insertions, 0 deletions
diff --git a/scripts/src/bus.lua b/scripts/src/bus.lua index 4dc6609e9ed..88b73e56729 100644 --- a/scripts/src/bus.lua +++ b/scripts/src/bus.lua @@ -2374,6 +2374,8 @@ if (BUSES["A2BUS"]~=null) then MAME_DIR .. "src/devices/bus/a2bus/byte8251.h", MAME_DIR .. "src/devices/bus/a2bus/cmsscsi.cpp", MAME_DIR .. "src/devices/bus/a2bus/cmsscsi.h", + MAME_DIR .. "src/devices/bus/a2bus/uthernet.cpp", + MAME_DIR .. "src/devices/bus/a2bus/uthernet.h", } end 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 --------------------------------------------------- diff --git a/scripts/target/mame/mess.lua b/scripts/target/mame/mess.lua index 14087cee686..4d8717bbe37 100644 --- a/scripts/target/mame/mess.lua +++ b/scripts/target/mame/mess.lua @@ -480,6 +480,7 @@ MACHINES["COP452"] = true MACHINES["CR589"] = true MACHINES["CS4031"] = true MACHINES["CS8221"] = true +MACHINES["CS8900A"] = true MACHINES["CXD1095"] = true MACHINES["DP8390"] = true MACHINES["DP83932C"] = true |