summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHarley Travis <harleytravis123@outlook.com>2026-06-27 15:40:03 -0500
committerHarley Travis <harleytravis123@outlook.com>2026-06-27 15:40:03 -0500
commit09206e2c71d63a54766bb73fe0902e85811a821c (patch)
treeadeb2815c5fd88a729723cefdcc2493dbdf57a59
parent5adc149b0cdca7cec61b69f7eb9004f1a6b9b437 (diff)
downloadtempleos-floppy-driver-09206e2c71d63a54766bb73fe0902e85811a821c.tar.gz
Add modulation mode prompt to mount code
-rw-r--r--Adam/ABlkDev/Patches/Mount2CaseAFDC.HC7
-rw-r--r--Adam/ABlkDev/Patches/Mount2VarsFDC2.HC2
2 files changed, 8 insertions, 1 deletions
diff --git a/Adam/ABlkDev/Patches/Mount2CaseAFDC.HC b/Adam/ABlkDev/Patches/Mount2CaseAFDC.HC
index 76296ba..ac4ba95 100644
--- a/Adam/ABlkDev/Patches/Mount2CaseAFDC.HC
+++ b/Adam/ABlkDev/Patches/Mount2CaseAFDC.HC
@@ -77,4 +77,11 @@ case BDT_FLOPPY:
"Data Rate:\n";
bps=GetChar-'0'
} while (!(0<=bps<=3));
+ do {
+ "*** Modulation Modes***\n"
+ "0=FM\n"
+ "1=MFM\n\n";
+ "Modulation:\n";
+ mfm=GetChar-'0';
+ } while (!(0<=mfm<=1));
} \ No newline at end of file
diff --git a/Adam/ABlkDev/Patches/Mount2VarsFDC2.HC b/Adam/ABlkDev/Patches/Mount2VarsFDC2.HC
index d148a83..724a24e 100644
--- a/Adam/ABlkDev/Patches/Mount2VarsFDC2.HC
+++ b/Adam/ABlkDev/Patches/Mount2VarsFDC2.HC
@@ -4,4 +4,4 @@
// THEN: #include this file after it.
// ADAM PATCH: Must be installed after kernel patches!
-Bool whole_drv,make_free,defaults=FALSE; \ No newline at end of file
+Bool whole_drv,make_free,defaults=FALSE,mfm; \ No newline at end of file