add some more euro IIe models from 0.273

This commit is contained in:
Kelvin Sherlock
2025-01-01 15:20:15 -05:00
parent 1061e7b239
commit d46bcb556c
13 changed files with 109569 additions and 12 deletions

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -48,12 +48,6 @@
<key>value</key>
<string>apple2e</string>
</dict>
<dict>
<key>description</key>
<string>Apple //e (Spain)</string>
<key>value</key>
<string>apple2ees</string>
</dict>
<dict>
<key>description</key>
<string>Apple //e (UK)</string>
@@ -62,10 +56,37 @@
</dict>
<dict>
<key>description</key>
<string>Apple //e (Platinum)</string>
<string>Apple //e (Germany)</string>
<key>value</key>
<string>apple2ep</string>
<string>apple2ede</string>
</dict>
<dict>
<key>description</key>
<string>Apple //e (Sweden)</string>
<key>value</key>
<string>apple2ese</string>
</dict>
<dict>
<key>description</key>
<string>Apple //e (France)</string>
<key>value</key>
<string>apple2efr</string>
</dict>
<dict>
<key>description</key>
<string>Apple //e (Spain)</string>
<key>value</key>
<string>apple2ees</string>
</dict>
</array>
</dict>
<dict>
<key>description</key>
<string>Apple IIe (enhanced)</string>
<key>value</key>
<string>apple2ee</string>
<key>children</key>
<array>
<dict>
<key>description</key>
<string>Apple //e (enhanced)</string>
@@ -78,6 +99,18 @@
<key>value</key>
<string>apple2eeuk</string>
</dict>
<dict>
<key>description</key>
<string>Apple //e (enhanced, Germany)</string>
<key>value</key>
<string>apple2eede</string>
</dict>
<dict>
<key>description</key>
<string>Apple //e (enhanced, Sweden)</string>
<key>value</key>
<string>apple2eese</string>
</dict>
<dict>
<key>description</key>
<string>Apple //e (enhanced, France)</string>
@@ -86,6 +119,45 @@
</dict>
</array>
</dict>
<dict>
<key>description</key>
<string>Apple IIe (platinum)</string>
<key>value</key>
<string>apple2p</string>
<key>children</key>
<array>
<dict>
<key>description</key>
<string>Apple //e (Platinum)</string>
<key>value</key>
<string>apple2ep</string>
</dict>
<dict>
<key>description</key>
<string>Apple //e (Platinum, UK)</string>
<key>value</key>
<string>apple2epuk</string>
</dict>
<dict>
<key>description</key>
<string>Apple //e (Platinum, Germany)</string>
<key>value</key>
<string>apple2epde</string>
</dict>
<dict>
<key>description</key>
<string>Apple //e (Platinum, Sweden)</string>
<key>value</key>
<string>apple2epse</string>
</dict>
<dict>
<key>description</key>
<string>Apple //e (Platinum, France)</string>
<key>value</key>
<string>apple2epfr</string>
</dict>
</array>
</dict>
<dict>
<key>description</key>
<string>Apple //c</string>

View File

@@ -2,9 +2,12 @@ MACHINES = (
"apple1",
"apple2", "apple2p", "apple2jp",
"apple3",
"apple2e", "apple2ees", "apple2euk", "apple2ep",
"apple2ee", "apple2eeuk", "apple2eefr",
"apple2gs", "apple2gsr0", "apple2gsr1",
"apple2e", "apple2ede", "apple2efr", "apple2ese", "apple2euk",
"apple2ee", "apple2eede", "apple2eefr", "apple2ees", "apple2eese", "apple2eeuk",
"apple2ep", "apple2epde", "apple2epfr", "apple2epse", "apple2epuk",
"apple2gs", "apple2gsr0", "apple2gsr1", "apple2gsmt",
"apple2c", "apple2c0", "apple2c3", "apple2c4", "apple2cp",
# laser family

View File

@@ -12,7 +12,10 @@ import mame
apple1_children = None
apple2_children = ["apple2", "apple2p", "apple2jp"]
apple3_children = None
apple2e_children = ["apple2e", "apple2ees", "apple2euk", "apple2ep", "apple2ee", "apple2eeuk", "apple2eefr"]
apple2e_children = ["apple2e", "apple2euk", "apple2ede", "apple2ese", "apple2efr", "apple2ees"]
apple2ee_children = ["apple2ee", "apple2eeuk", "apple2eede", "apple2eese", "apple2eefr"]
apple2ep_children = ["apple2ep", "apple2epuk", "apple2epde", "apple2epse", "apple2epfr"]
apple2c_children = ["apple2c", "apple2c0", "apple2c3", "apple2c4", "apple2cp"]
apple2gs_children = ["apple2gsr0", "apple2gsr1", "apple2gs"]
laser_children = ["las3000", "laser2c", "laser128", "laser128o", "las128ex", "las128e2"]
@@ -87,6 +90,8 @@ TREE = [
("Apple I", "apple1", apple1_children),
("Apple ][", "apple2", apple2_children),
("Apple IIe", "apple2e", apple2e_children),
("Apple IIe (enhanced)", "apple2ee", apple2ee_children),
("Apple IIe (platinum)", "apple2p", apple2ep_children),
("Apple //c", "apple2c", apple2c_children),
("Apple IIgs", "apple2gs", apple2gs_children),
("Apple ///", "apple3", apple3_children),