Changed default fdb drive type from 2.88M to 1.44M (3"1/2).

This commit is contained in:
Christian Schnell 2025-07-25 16:39:45 +02:00 committed by Fabian
parent 5332e7ba6b
commit 3cf1e89556

View file

@ -260,7 +260,7 @@ export function FloppyController(cpu, fda_image, fdb_image, fdc_config)
this.drives = [
new FloppyDrive(this, "fda", fdc_config?.fda, fda_image, CMOS_FDD_TYPE_1440),
new FloppyDrive(this, "fdb", fdc_config?.fdb, fdb_image, CMOS_FDD_TYPE_2880) // TODO: change this to 1440
new FloppyDrive(this, "fdb", fdc_config?.fdb, fdb_image, CMOS_FDD_TYPE_1440)
];
Object.seal(this);