blob: 341ef828fea86e84c06c9f399390ea46a8c3f832 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/*
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/");
CopyTree("./Adam/", "::/Adam/");
"The driver files have now been copied to your Kernel directory.\n"
"(that is all it does; it does not do any patching of your files)\n"
"Refer to ReadMe.TXT for further instructions. Good luck!\n";
|