summaryrefslogtreecommitdiffhomepage
path: root/dev/HPFS
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2024-09-05 14:42:03 +0200
committerAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2024-09-05 14:42:03 +0200
commit432e68391357423914547a7b34311258d7598808 (patch)
treec2f7eeb45f99b910122257d1a9c2bcfcda4bddb3 /dev/HPFS
parent3e2b931d65582284e9716c42a902cab6d279c7f0 (diff)
[ FIX ] Fixing shortcomings of scheduler, filesystem and kernel.
Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'dev/HPFS')
-rw-r--r--dev/HPFS/.gitignore3
-rw-r--r--dev/HPFS/hpfs.json11
-rw-r--r--dev/HPFS/hpfs_main.rs10
3 files changed, 24 insertions, 0 deletions
diff --git a/dev/HPFS/.gitignore b/dev/HPFS/.gitignore
new file mode 100644
index 00000000..6f675898
--- /dev/null
+++ b/dev/HPFS/.gitignore
@@ -0,0 +1,3 @@
+*.sys
+*.exe
+*.dll \ No newline at end of file
diff --git a/dev/HPFS/hpfs.json b/dev/HPFS/hpfs.json
new file mode 100644
index 00000000..1098dfd3
--- /dev/null
+++ b/dev/HPFS/hpfs.json
@@ -0,0 +1,11 @@
+{
+ "compiler_path": "rustc",
+ "compiler_std": "",
+ "sources_path": ["*.rs"],
+ "output_name": "hpfs.sys",
+ "compiler_flags": [
+ ],
+ "cpp_macros": [
+ ]
+ }
+ \ No newline at end of file
diff --git a/dev/HPFS/hpfs_main.rs b/dev/HPFS/hpfs_main.rs
new file mode 100644
index 00000000..ed66d175
--- /dev/null
+++ b/dev/HPFS/hpfs_main.rs
@@ -0,0 +1,10 @@
+/*
+ * Created on Thu Sep 05 2024
+ *
+ * Copyright (c) 2024 ZKA Technologies.
+ */
+
+fn main() {
+ println!("ZKA High Performance File System Driver for ZKA/OS.");
+ println!("Copyright ZKA technologies, all rights reserved.");
+} \ No newline at end of file