blob: 765ca9956d8bf233f73eee9a4f504e896e6fefb6 (
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
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; ;;
;; File : jo_f_percent.asm /_________/ ;;
;; Author : Joe | ;;
;; Date : 04/2020 | ;;
;; Info : gets batt remaining capacity | ;;
;; / | ;;
;; \ / ;;
;; \_____/ ;;
;; ;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
section .text
extern system
global jo_f_percent
jo_f_percent:
mov rdi, f_cmd
call system
retq
err:
mov rax, 0xff
retq
section .data
f_cmd: db "apm -l > /tmp/lowbat.percent", 0x0
buff: db 0x0, 0x0, 0x0, 0x0
|