blob: 04a700d9991132bd1431b145318cfd93b4e66e8e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/*
Copyright (C) 2026 Harley Travis <yoshi128k@gmail.com>.
This software (including source code) is licensed under the BSD Zero Clause
License. See the Copying.TXT file for details.
*/
// PURPOSE: Semi-automate the floppy driver install process
// TO USE: #include this file on the cmd line
CopyTree("./Kernel/", "::/Kernel/");
"The driver files have now been copied to your Kernel directory\n";
"To complete the installation:\n\n";
"in ::/Kernel/Kernel.PRJ:\n"
"* Include \"KFloppyDMA\" after \"KStart32\".\n";
"* Include \"KFloppyA.HH\" and \"KFloppy\" (in that order) after \"KMain\"\n\n";
"in ::/StartOS.HC:\n"
"* Include \"KFloppyB.HH\" after \"CompilerB.HH\"\n\n";
"Then, rebuild the kernel with BootHDIns().\n\n";
"Refer to ReadMe.TXT for further instructions. Good luck!\n";
|