diff options
| author | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2024-02-01 08:26:34 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlalelmahrouss@icloud.com> | 2024-02-01 08:29:24 +0100 |
| commit | b052cb4fbb7b83c1292a3098ee7d00e9f3f3fba1 (patch) | |
| tree | fde735516201f30890e5ec740529f813463ed0e9 /Internal | |
| parent | be3ec5e358fcf47ab1136b38f03c7348bb5390e9 (diff) | |
New commit: see below.
- Add Internal directory.
- Add Drivers directory.
- Add DDKit in Kits directory.
Signed-off-by: Amlal El Mahrouss <amlalelmahrouss@icloud.com>
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; +} |
