summaryrefslogtreecommitdiffhomepage
path: root/dev/INSTALL
diff options
context:
space:
mode:
Diffstat (limited to 'dev/INSTALL')
-rw-r--r--dev/INSTALL/ReadMe.txt3
-rw-r--r--dev/INSTALL/X64/InstallAPI.asm (renamed from dev/INSTALL/Install.asm)23
2 files changed, 26 insertions, 0 deletions
diff --git a/dev/INSTALL/ReadMe.txt b/dev/INSTALL/ReadMe.txt
new file mode 100644
index 00000000..38a1817c
--- /dev/null
+++ b/dev/INSTALL/ReadMe.txt
@@ -0,0 +1,3 @@
+ZKA installer ReadMe:
+
+- X64: x64 editions installer.
diff --git a/dev/INSTALL/Install.asm b/dev/INSTALL/X64/InstallAPI.asm
index 3845316c..2e2ba195 100644
--- a/dev/INSTALL/Install.asm
+++ b/dev/INSTALL/X64/InstallAPI.asm
@@ -8,3 +8,26 @@
;; *
;; * ---------------------------------------------------
;; */
+
+[bits 64]
+
+[global kInstallTitle]
+[global InstInstallToDir]
+
+section .data
+
+kInstallTitle: db "Install ZKA", 0
+
+section .text
+
+;; @param r8 arg 1
+;; @param r9 arg 2
+;; @note PEF procedure.
+InstInstallToDir:
+ mov rcx, r8 ; file
+ mov rdx, r9 ; dest dir
+ int 0x32
+ ret
+
+
+