add maclc2, maclc3, and maciici (plus nubus roms)

which are reportedly also usable.
This commit is contained in:
Kelvin Sherlock
2021-01-18 14:47:00 -05:00
parent c51ae648d9
commit dc5ab08d4b
10 changed files with 764 additions and 4 deletions
+2 -2
View File
@@ -84,7 +84,7 @@ def find_machine_media(parent):
if mname == "apple2c" and slot == "sl6": slot = None
# hack for now - these are scsi:1-7 slots but slot option isn't adjustable.
if mname == "maclc" and slot == "scsi": slot = None
if mname[0:3] == "mac" and slot == "scsi": slot = None
if slot: continue
# skip slot devices -- they'll be handled as part of the device.
@@ -215,7 +215,7 @@ for m in machines:
# node = machine.find('display[@tag="screen"]')
node = machine.find('./display')
hscale = 2
if m in ("maclc"): hscale = 1
if m[0:3] == "mac": hscale = 1
data["resolution"] = [int(node.get("width")), int(node.get("height")) * hscale]
mm = {}