Tested and excluded extra CD ROM devices.

They were previously excluded from the machine descriptions but
they now need to be excluded from the ROM file as well.
This commit is contained in:
Kelvin Sherlock 2022-01-15 10:54:18 -05:00
parent 5382447dc9
commit eda219faa2
3 changed files with 37 additions and 12 deletions

View File

@ -66,7 +66,6 @@
<string>am100</string>
<string>am64</string>
<string>ap2000</string>
<string>aplcd150</string>
<string>apple1</string>
<string>apple2</string>
<string>apple2c</string>
@ -92,26 +91,17 @@
<string>aprissi</string>
<string>basis108</string>
<string>ccs7710</string>
<string>cdd2000</string>
<string>cdr4210</string>
<string>cdrn820s</string>
<string>cdu415</string>
<string>cdu561_25</string>
<string>cdu75s</string>
<string>cec2000</string>
<string>cece</string>
<string>cecg</string>
<string>ceci</string>
<string>cecm</string>
<string>cffa1</string>
<string>cfp1080s</string>
<string>cga</string>
<string>chessmachine</string>
<string>cmsscsi</string>
<string>comx_pl80</string>
<string>craft2p</string>
<string>crd254sh</string>
<string>cw7501</string>
<string>d2fdc</string>
<string>diskii13</string>
<string>dodo</string>
@ -191,7 +181,6 @@
<string>prav8c</string>
<string>prav8m</string>
<string>qsound</string>
<string>smoc501</string>
<string>softcard3</string>
<string>space84</string>
<string>spectred</string>

View File

@ -17,8 +17,29 @@ from machines import MACHINES, SLOTS, SLOT_NAMES
# Inside Macintosh: Devices chapter 2 explains the Nubus slot name scheme
# (essentially $01-$0e; $0 and $f are reserved)
#
# TODO -midiin, -midiout, -printout, -bitbanger
# TODO -printout
#
# SCSI devices:
# ROM 1, a2scsi, golden orchard, as of 239 wip:
# cdrom - CDROM
# aplcdsc - Apple SCSI CDROM
#
# these are all skeleton drivers and generally require a ROM.
#
# aplcd150 - Apple CD 150 - bad dump, known problems warning, shows in finder as hard drive
# cdrn820s - Caravell CDR-N820s - shows in finder as hard drive
# cfp1080s - known problems warning, shows as hard drive
# cdr4210 - known problems warning, shows as hard drive
# cw7501 - known problems warning, shows as hard drive
# cdd2000 - known problems warning, shows as hard drive
# crd254sh - known problems warning, shows as hard drive
# cdu415 - known problems warning, shows as hard drive
# cdu561_25 - known problems warning, shows as hard drive
# smoc501 - known problems warning, shows as hard drive
# cdu75s - known problems warning, shows as hard drive
#
#
# don't allow these for now. generally because they add floppy/hard drives

View File

@ -93,6 +93,21 @@ EXCLUDE = set([
'maciix',
'kb_pc83',
# ROMs for CD Drives, etc, that are intentionally hidden
# due to lack of functionality.
'aplcd150',
'cdd2000',
'cdr4210',
'cdrn820s',
'cdu415',
'cdu561_25',
'cdu75s',
'cfp1080s',
'crd254sh',
'cw7501',
'smoc501',
])