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