summaryrefslogtreecommitdiffhomepage
path: root/dev/HPFS
diff options
context:
space:
mode:
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