mirror of
https://github.com/copy/v86.git
synced 2025-12-31 04:23:15 +00:00
Changed default fdb drive type from 2.88M to 1.44M (3"1/2).
This commit is contained in:
parent
5332e7ba6b
commit
3cf1e89556
1 changed files with 1 additions and 1 deletions
|
|
@ -260,7 +260,7 @@ export function FloppyController(cpu, fda_image, fdb_image, fdc_config)
|
||||||
|
|
||||||
this.drives = [
|
this.drives = [
|
||||||
new FloppyDrive(this, "fda", fdc_config?.fda, fda_image, CMOS_FDD_TYPE_1440),
|
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);
|
Object.seal(this);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue