Posted By
seff on 2021-01-28 07:00:30
| Re: SD2IEC - what to buy?
Yes, I could switch 1551 to #9 and keep SD2IEC as #8, and copy full disks with Dracopy Plus4
Or possibly, it could be supported as follows: SD2IEC command reference
Changing the Device Address By default the SD2IEC is set to be drive number 8. But like its vintage counterpart you can change this to 9, 10 or 11 using the following command:
// change from drive 8 to drive 9 OPEN 15,8,15 PRINT#15,“U0>"+CHR$(9) CLOSE 15
Replace the CHR$ value with the desired drive number. Just like a real 1541 drive, the SD2IEC will not remember this change upon reset. You can however save the above to its internal EEPROM which will survive subsequent reboots:
// save drive number to EEPROM OPEN 15,9,15 PRINT#15,“XW" CLOSE 15
Replace 9 with your actual drive number.
|