summaryrefslogtreecommitdiffhomepage
path: root/dev/INSTALL
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2024-09-01 19:23:36 +0200
committerAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2024-09-01 19:24:12 +0200
commita65b375680f63f5d4621941f49834255b9a567fb (patch)
treec53bdca984d92d472d6cc71422387c5bef38d702 /dev/INSTALL
parent76835f023db03aef20c74541fb2a8a9485206cf7 (diff)
[ IMP ] Bumping repository.
Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
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
+
+
+