From 15de1acb37d8b92db9499192b22a189cad913215 Mon Sep 17 00:00:00 2001 From: Harley Travis Date: Fri, 19 Jun 2026 19:20:32 -0500 Subject: Update source file information comments I have added the "PURPOSE", "TO USE", and "THEN" tags to make the information sections more easy to read while keeping line length down. These are used by a Python script I wrote to generate an instruction file. --- Examples/DskImg.HC | 3 +++ Install.HC | 3 ++- Kernel/BlkDev/DskFDC.HC | 1 + Kernel/KFloppyA.HH | 1 + Kernel/KFloppyB.HH | 1 + 5 files changed, 8 insertions(+), 1 deletion(-) diff --git a/Examples/DskImg.HC b/Examples/DskImg.HC index b2a6560..445cbdc 100644 --- a/Examples/DskImg.HC +++ b/Examples/DskImg.HC @@ -9,6 +9,9 @@ License. See the Copying.TXT file for details. */ +// PURPOSE: Demonstration of floppy driver +// TO USE: #include this file at the cmd prompt or run it with F5 + /* Make sure IRQ6 is on and diff --git a/Install.HC b/Install.HC index c070217..04a700d 100644 --- a/Install.HC +++ b/Install.HC @@ -4,7 +4,8 @@ License. See the Copying.TXT file for details. */ -// This program semi-automates the floppy driver install process. +// PURPOSE: Semi-automate the floppy driver install process +// TO USE: #include this file on the cmd line CopyTree("./Kernel/", "::/Kernel/"); diff --git a/Kernel/BlkDev/DskFDC.HC b/Kernel/BlkDev/DskFDC.HC index 0962b2b..b24c916 100644 --- a/Kernel/BlkDev/DskFDC.HC +++ b/Kernel/BlkDev/DskFDC.HC @@ -4,6 +4,7 @@ License. See the Copying.TXT file for details. */ +// PURPOSE: Adds support for std PC floppy dsk ctrlrs to TempleOS // TO INSTALL: #include this file after DskATA in MakeBlkDev.HC. interrupt U0 IRQ_FDC() diff --git a/Kernel/KFloppyA.HH b/Kernel/KFloppyA.HH index 2278f03..a28c9ce 100644 --- a/Kernel/KFloppyA.HH +++ b/Kernel/KFloppyA.HH @@ -4,6 +4,7 @@ License. See the Copying.TXT file for details. */ +// PURPOSE: Adds necessary definitions for the floppy driver // TO INSTALL: #include this file in Kernel.PRJ, after KernelB.HH. // Also #include it in ::/StartOS.HC. diff --git a/Kernel/KFloppyB.HH b/Kernel/KFloppyB.HH index 0af3047..a192a73 100644 --- a/Kernel/KFloppyB.HH +++ b/Kernel/KFloppyB.HH @@ -4,6 +4,7 @@ License. See the Copying.TXT file for details. */ +// PURPOSE: Exports floppy driver funs for use by other programs // TO INSTALL: #include this file after KernelA.HH in Kernel.PRJ. // Also #include it in StartOS.HC. -- cgit v1.2.3