blob: 5c9b2b77593c939b7b9254d1236792baa32e9408 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; ;;
;; File : jo_r_lowbat.asm /_________/ ;;
;; Author : Joe | ;;
;; Date : 04/2020 | ;;
;; Info : The main program | ;;
;; / | ;;
;; \ / ;;
;; \_____/ ;;
;; ;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Files prefixes
;; --------------
;; f: fetch
;; n: notify
;; r: run
;; c: check
section .text
extern printf
extern jo_n_speak
extern jo_c_args
global jo_r_lowbat
jo_r_lowbat:
call jo_c_args
cmp rax, 0x0
jne joprint
push rdi
mov rdi, msg
call jo_n_speak
pop rdi
xor rax, rax
mov rax, rdi
retq
joprint:
push rdi
push rsi
mov rdi, fmt
mov rsi, rax
call printf
pop rsi
pop rdi
retq
section .data
msg: db "Welcome back, partner!", 0x0
fmt: db "argv[2]: %s\n", 0x0
|