From a65b375680f63f5d4621941f49834255b9a567fb Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Sun, 1 Sep 2024 19:23:36 +0200 Subject: [ IMP ] Bumping repository. Signed-off-by: Amlal El Mahrouss --- dev/INSTALL/X64/InstallAPI.asm | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 dev/INSTALL/X64/InstallAPI.asm (limited to 'dev/INSTALL/X64/InstallAPI.asm') diff --git a/dev/INSTALL/X64/InstallAPI.asm b/dev/INSTALL/X64/InstallAPI.asm new file mode 100644 index 00000000..2e2ba195 --- /dev/null +++ b/dev/INSTALL/X64/InstallAPI.asm @@ -0,0 +1,33 @@ +;; /* +;; * --------------------------------------------------- +;; * +;; * Copyright ZKA Technologies., all rights reserved. +;; * +;; * File: Install.asm +;; * Purpose: ZKA installer program, runs at ring-0. +;; * +;; * --------------------------------------------------- +;; */ + +[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 + + + -- cgit v1.2.3