summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Adam/Patches/Mount2LtrsFDC.HC3
-rw-r--r--Adam/Patches/Mount2VarsFDC.HC3
-rw-r--r--Adam/Patches/Mount2VarsFDC2.HC3
-rw-r--r--Kernel/Patches/KDefineBDTs.HC3
-rw-r--r--Kernel/Patches/KernelABDTs.HH3
-rw-r--r--Kernel/Patches/Let2BlkDevTypeFDC.HC3
6 files changed, 12 insertions, 6 deletions
diff --git a/Adam/Patches/Mount2LtrsFDC.HC b/Adam/Patches/Mount2LtrsFDC.HC
index b55fa3f..416a979 100644
--- a/Adam/Patches/Mount2LtrsFDC.HC
+++ b/Adam/Patches/Mount2LtrsFDC.HC
@@ -1,6 +1,7 @@
// PATCH: Update ltr lst to reflect remapping of drv ltrs
// FILE: ::/Adam/ABlkDev/Mount.HC
-// TO INSTALL: Comment out the original Print call, then #include this file.
+// TO INSTALL: Comment out the original Print call
+// THEN: #include this file.
"\n****** Mount Drives ******\n"
"$GREEN$A$FG$-$GREEN$B$FG$ are RAM drives.\n"
diff --git a/Adam/Patches/Mount2VarsFDC.HC b/Adam/Patches/Mount2VarsFDC.HC
index c164a14..7733e3c 100644
--- a/Adam/Patches/Mount2VarsFDC.HC
+++ b/Adam/Patches/Mount2VarsFDC.HC
@@ -1,6 +1,7 @@
// PATCH: Add more U8 bufs for floppy configuration
// FILE: ::/Adam/ABlkDev/Mount.HC
-// TO INSTALL: Comment out the original declaration, then #include this file.
+// TO INSTALL: Comment out the original declaration
+// THEN: #include this file.
U8 blks_buf[STR_LEN],addr_buf[STR_LEN],base0_buf[STR_LEN],base1_buf[STR_LEN],
cyl_buf[STR_LEN],heads,spt_buf[STR_LEN],size,srt_buf[STR_LEN],
diff --git a/Adam/Patches/Mount2VarsFDC2.HC b/Adam/Patches/Mount2VarsFDC2.HC
index 41871e5..b2fa687 100644
--- a/Adam/Patches/Mount2VarsFDC2.HC
+++ b/Adam/Patches/Mount2VarsFDC2.HC
@@ -1,5 +1,6 @@
// PATCH: Add two new Bools for floppy configuration
// FILE: ::/Adam/ABlkDev/Mount.HC
-// TO INSTALL: Comment out the old Bool declaration, then #include this file.
+// TO INSTALL: Comment out the old Bool declaration
+// THEN: #include this file after it
Bool whole_drv,make_free,defaults=FALSE; \ No newline at end of file
diff --git a/Kernel/Patches/KDefineBDTs.HC b/Kernel/Patches/KDefineBDTs.HC
index 1ddeebf..58c5cff 100644
--- a/Kernel/Patches/KDefineBDTs.HC
+++ b/Kernel/Patches/KDefineBDTs.HC
@@ -1,6 +1,7 @@
// PATCH: Add str for floppy BlkDev type to BlkDev str tbl
// FILE: ::/Kernel/KDefine.HC
-// TO INSTALL: Comment out the old DefineLstLoad call, then #include this file.
+// TO INSTALL: Comment out the old DefineLstLoad call
+// THEN: #include this file after ut
DefineLstLoad("ST_BLKDEV_TYPES",
"NULL\0RAM\0ATA\0FILE_READ\0FILE_WRITE\0ATAPI\0FLOPPY\0"); \ No newline at end of file
diff --git a/Kernel/Patches/KernelABDTs.HH b/Kernel/Patches/KernelABDTs.HH
index b300333..7fd804c 100644
--- a/Kernel/Patches/KernelABDTs.HH
+++ b/Kernel/Patches/KernelABDTs.HH
@@ -1,6 +1,7 @@
// PATCH: Add floppy BlkDev type
// FILE: ::/Kernel/KernelA.HH
-// TO INSTALL: Comment out the old #defines, then #include this file.
+// TO INSTALL: Comment out the old #defines
+// THEN: #include this file after them
#define BDT_NULL 0
#define BDT_RAM 1
diff --git a/Kernel/Patches/Let2BlkDevTypeFDC.HC b/Kernel/Patches/Let2BlkDevTypeFDC.HC
index 3a2afc3..2f7db8c 100644
--- a/Kernel/Patches/Let2BlkDevTypeFDC.HC
+++ b/Kernel/Patches/Let2BlkDevTypeFDC.HC
@@ -1,6 +1,7 @@
// PATCH: Remaps ltrs W-Z for floppy drives
// FILE: ::/Kernel/BlkDev/DskDrv.HC
-// TO INSTALL: Comment out the original function, then #include this file.
+// TO INSTALL: Comment out the original function
+// THEN: #include this file after it
I64 Let2BlkDevType(U8 drv_let)
{//Drv letter to BlkDev Type. drv_let=0 not allowed. See BDT_NULL.