diff options
Diffstat (limited to 'Internal')
| -rw-r--r-- | Internal/Tools/.gitkeep | 0 | ||||
| -rw-r--r-- | Internal/Tools/NewFSPartTool.cxx | 26 |
2 files changed, 26 insertions, 0 deletions
diff --git a/Internal/Tools/.gitkeep b/Internal/Tools/.gitkeep new file mode 100644 index 00000000..e69de29b --- /dev/null +++ b/Internal/Tools/.gitkeep diff --git a/Internal/Tools/NewFSPartTool.cxx b/Internal/Tools/NewFSPartTool.cxx new file mode 100644 index 00000000..41bdd392 --- /dev/null +++ b/Internal/Tools/NewFSPartTool.cxx @@ -0,0 +1,26 @@ +/* ------------------------------------------- + + Copyright Mahrouss Logic + + File: MakeNewFS.cpp + Purpose: Partition a drive with a NewFS/EPM filesystem in it. + + Revision History: + + 31/01/24: Added file (amlel) + +------------------------------------------- */ + +/***********************************************************************************/ +/// @file MakeNewFS.cxx +/// @brief NewFS partition program. +/***********************************************************************************/ + +#include <iostream> + +int main() { + std::cout + << "NewFSPartTool: Make a NewFS partition image from a directory!\n" + << "Copyright Mahrouss Logic, all rights reserved. (INTERNAL TOOL)\n"; + return 0; +} |
