summaryrefslogtreecommitdiffhomepage
path: root/dev/install
diff options
context:
space:
mode:
authorAmlal <amlal@el-mahrouss-logic.com>2024-10-24 20:11:21 +0200
committerAmlal <amlal@el-mahrouss-logic.com>2024-10-24 20:11:21 +0200
commitb0850d02b7fba8f0e16092c7609e928907d2521d (patch)
tree81ba785ba42607dff1df3538f305a23b8c2b1ce5 /dev/install
parent52b4044ab4956597aee4c629ba5fe5ec8966beac (diff)
IMP: Doing a cleanup and finishing the first version of ZKA.
Signed-off-by: Amlal <amlal@el-mahrouss-logic.com>
Diffstat (limited to 'dev/install')
-rw-r--r--dev/install/.keepme0
-rw-r--r--dev/install/ReadMe.md5
-rw-r--r--dev/install/hal/install_api.asm31
3 files changed, 0 insertions, 36 deletions
diff --git a/dev/install/.keepme b/dev/install/.keepme
deleted file mode 100644
index e69de29b..00000000
--- a/dev/install/.keepme
+++ /dev/null
diff --git a/dev/install/ReadMe.md b/dev/install/ReadMe.md
deleted file mode 100644
index ff9b0dbf..00000000
--- a/dev/install/ReadMe.md
+++ /dev/null
@@ -1,5 +0,0 @@
-# ReadMe: install
-
-This is the ZKA installer, installs the OS into an Hard-Drive.
-
-###### Copyright ZKA Web Services Co, all rights reserved.
diff --git a/dev/install/hal/install_api.asm b/dev/install/hal/install_api.asm
deleted file mode 100644
index 76a198b6..00000000
--- a/dev/install/hal/install_api.asm
+++ /dev/null
@@ -1,31 +0,0 @@
-;; /*
-;; * ---------------------------------------------------
-;; *
-;; * Copyright ZKA Web Services Co.
-;; *
-;; * File: Install.asm
-;; * Purpose: ZKA installer program, runs at ring-0.
-;; *
-;; * ---------------------------------------------------
-;; */
-
-[bits 64]
-
-[global kInstallTitle]
-[global InstInstallToDir]
-
-section .data
-
-kInstallTitle: db "Formatting...", 0
-
-section .text
-
-;; @param r8 arg 1
-;; @param r9 arg 2
-;; @return rax, return status of syscall.
-;; @note MS-ABI procedure.
-InstInstallToDir:
- mov r8, rcx ; FILE_INFO_STRUCT (SRC)
- mov r9, rdx ; FILE_INFO_STRUCT (DST)
- syscall ;; 0 = GOOD, 1 = BAD FIS (SRC), 2 = BAD FIS (DST)
- ret