diff options
| author | Amlal El Mahrouss <amlal@el-mahrouss-logic.com> | 2024-03-16 19:55:10 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@el-mahrouss-logic.com> | 2024-03-16 19:55:10 +0100 |
| commit | e8d46c98880ed3f33fc1760e8f3a99577fa31eb3 (patch) | |
| tree | b0348491570fa12ec5e05b4a9cb4d68c51425b2c /Private | |
| parent | 302ee90916fde01771797f52d8a99aee562e4b1e (diff) | |
Unrelated: Moving tools to another repository.
Diffstat (limited to 'Private')
| -rw-r--r-- | Private/Tools/.gitkeep | 0 | ||||
| -rw-r--r-- | Private/Tools/Makefile | 8 | ||||
| -rw-r--r-- | Private/Tools/make_hcfs.cxx | 26 | ||||
| -rw-r--r-- | Private/Tools/make_hcfs.hxx | 29 |
4 files changed, 0 insertions, 63 deletions
diff --git a/Private/Tools/.gitkeep b/Private/Tools/.gitkeep deleted file mode 100644 index e69de29b..00000000 --- a/Private/Tools/.gitkeep +++ /dev/null diff --git a/Private/Tools/Makefile b/Private/Tools/Makefile deleted file mode 100644 index 8999e00c..00000000 --- a/Private/Tools/Makefile +++ /dev/null @@ -1,8 +0,0 @@ -################################################## -# ; (C) Mahrouss Logic, 2024, all rights reserved. -# This is the tools makefile. -################################################## - -.PHONY: make_hcfs -make_hcfs: - g++ -I./ -std=c++20 make_hcfs.cxx -o make_hcfs.exe
\ No newline at end of file diff --git a/Private/Tools/make_hcfs.cxx b/Private/Tools/make_hcfs.cxx deleted file mode 100644 index 9ffeca30..00000000 --- a/Private/Tools/make_hcfs.cxx +++ /dev/null @@ -1,26 +0,0 @@ -/* ------------------------------------------- - - Copyright Mahrouss Logic - - File: PartTool.cpp - Purpose: Partition a drive with a NewFS/EPM filesystem in it. - - Revision History: - - 31/01/24: Added file (amlel) - -------------------------------------------- */ - -/***********************************************************************************/ -/// @file PartTool.cxx -/// @brief NewFS partition program. -/***********************************************************************************/ - -#include <make_hcfs.hxx> - -int main(void) { - printf("%s\n", "HCFS Partition Tool, brought to you by Amlal El Mahrouss."); - printf("%s\n", "Copyright Mahrouss Logic, all rights reserved."); - - return 0; -} diff --git a/Private/Tools/make_hcfs.hxx b/Private/Tools/make_hcfs.hxx deleted file mode 100644 index 27a446c2..00000000 --- a/Private/Tools/make_hcfs.hxx +++ /dev/null @@ -1,29 +0,0 @@ -/* ------------------------------------------- - - Copyright Mahrouss Logic - all rights reserved. - - File: Disk.hxx - -------------------------------------------- */ - -#pragma once - -#ifdef __cplusplus -extern "C" { -#endif // __cplusplus - -#include <stdio.h> -#include <stdint.h> - -#ifdef __cplusplus -}; -#endif // __cplusplus - -typedef struct __sDISK -{ - FILE* fFile; - int32_t fDiskFilesystem; - uintptr_t fDiskCursor; - size_t fDiskSize; -} DISK, *PDISK; |
