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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
/****************************************************************************************/
/* */
/* File : r_cpyhead.asm /_________/ */
/* Author : Joe | */
/* Date : 04/2020 | */
/* Info : Formats and returns notification head title | */
/* / | */
/* \ / */
/* \_____/ */
/* */
/****************************************************************************************/
.text
.extern sprintf
.globl r_cpyhead
.extern puts
.globl main
r_cpyhead:
movq $buff, %rdi
movq $n_head, %rsi
xorq %rax, %rax
callq sprintf
movq %rdi, %rax
retq
main:
movq $25, %rdx
callq r_cpyhead
movq %rax, %rdi
callq puts
xorq %rdi, %rdi
movq $0x1, %rax
syscall
retq
.data
n_head: .asciz "Low battery: %d%%"
.bss
buff: .zero 0x11
/* ;; section .text */
/* ;; extern memset */
/* ;; extern sprintf */
/* ;; global jo_r_cpyhead */
/* */
/* ;; jo_r_cpyhead: ; jo_r_cpyhead(percent: rdi) */
/* ;; push rdi */
/* ;; mov rdi, buff */
/* ;; mov rsi, 0x0 */
/* ;; mov rdx, 0x11 */
/* ;; call memset ; memset 0 notification head */
/* ;; lea rsi, [rel n_head] */
/* ;; pop rdi */
/* ;; mov rdx, rdi */
/* ;; mov rdi, rax */
/* ;; xor rax, rax */
/* ;; mov al, 0x1 */
/* ;; push rdi */
/* ;; call sprintf */
/* ;; pop rdi */
/* ;; mov rax, rdi */
/* ;; retq */
/* */
/* ;; section .data */
/* ;; n_head: db "Low battery: %d%%", 0x0 */
/* */
/* ;; section .bss */
/* ;; buff: resb 0x11 */
|