aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJozanLeClerc <bousset.rudy@gmail.com>2020-04-27 16:46:10 +0200
committerJozanLeClerc <bousset.rudy@gmail.com>2020-04-27 16:46:10 +0200
commit8592e5dc3376495d51eabea16d8c315e37bc51f7 (patch)
tree1bc0c02c48faff6b898a1755eec4c4801c17aede
parentCleanup (diff)
downloadlowbat-bsd-8592e5dc3376495d51eabea16d8c315e37bc51f7.tar.gz
lowbat-bsd-8592e5dc3376495d51eabea16d8c315e37bc51f7.tar.bz2
lowbat-bsd-8592e5dc3376495d51eabea16d8c315e37bc51f7.tar.xz
lowbat-bsd-8592e5dc3376495d51eabea16d8c315e37bc51f7.tar.zst
lowbat-bsd-8592e5dc3376495d51eabea16d8c315e37bc51f7.zip
Better comments
-rw-r--r--asm/c_args.asm8
-rw-r--r--asm/f_percent.asm4
-rw-r--r--asm/f_status.asm18
-rw-r--r--asm/r_cpyhead.asm4
-rw-r--r--asm/r_loop.asm4
-rw-r--r--asm/r_lowbat.asm4
-rw-r--r--src/n_notify.c4
-rw-r--r--src/n_notify.h4
-rw-r--r--src/n_speak.c4
-rw-r--r--src/n_speak.h4
10 files changed, 30 insertions, 28 deletions
diff --git a/asm/c_args.asm b/asm/c_args.asm
index 441e4c3..17f90c9 100644
--- a/asm/c_args.asm
+++ b/asm/c_args.asm
@@ -1,4 +1,4 @@
-/* ************************************************************************************ */
+/****************************************************************************************/
/* */
/* File : c_args.asm /_________/ */
/* Author : Joe | */
@@ -8,14 +8,14 @@
/* \ / */
/* \_____/ */
/* */
-/* ************************************************************************************ */
+/****************************************************************************************/
-/* ******************************* */
+/***********************************/
/* c_args(argc: rdi, *argv[]: rsi) */
/* ------------------------------- */
/* returns 0 if args are invalid */
/* returns 1 if args are valid */
-/* ******************************* */
+/***********************************/
.text
.extern strncmp
diff --git a/asm/f_percent.asm b/asm/f_percent.asm
index 14511e8..82b560e 100644
--- a/asm/f_percent.asm
+++ b/asm/f_percent.asm
@@ -1,4 +1,4 @@
-/* ************************************************************************************ */
+/****************************************************************************************/
/* */
/* File : f_percent.asm /_________/ */
/* Author : Joe | */
@@ -8,7 +8,7 @@
/* \ / */
/* \_____/ */
/* */
-/* ************************************************************************************ */
+/****************************************************************************************/
.text
.extern system
diff --git a/asm/f_status.asm b/asm/f_status.asm
index 81ff3d8..092a88c 100644
--- a/asm/f_status.asm
+++ b/asm/f_status.asm
@@ -1,4 +1,4 @@
-/* ************************************************************************************ */
+/****************************************************************************************/
/* */
/* File : f_status.asm /_________/ */
/* Author : Joe | */
@@ -8,14 +8,16 @@
/* \ / */
/* \_____/ */
/* */
-/* ************************************************************************************ */
+/****************************************************************************************/
-;; apm status
-;; ----------
-;; 0: high
-;; 1: low
-;; 2: critical
-;; 3: charging
+/***************/
+/* apm status */
+/* ---------- */
+/* 0: high */
+/* 1: low */
+/* 2: critical */
+/* 3: charging */
+/***************/
section .text
extern system
diff --git a/asm/r_cpyhead.asm b/asm/r_cpyhead.asm
index 15b0d9e..fbbed6a 100644
--- a/asm/r_cpyhead.asm
+++ b/asm/r_cpyhead.asm
@@ -1,4 +1,4 @@
-/* ************************************************************************************ */
+/****************************************************************************************/
/* */
/* File : r_cpyhead.asm /_________/ */
/* Author : Joe | */
@@ -8,7 +8,7 @@
/* \ / */
/* \_____/ */
/* */
-/* ************************************************************************************ */
+/****************************************************************************************/
section .text
extern memset
diff --git a/asm/r_loop.asm b/asm/r_loop.asm
index 308a9f4..d9f3d5e 100644
--- a/asm/r_loop.asm
+++ b/asm/r_loop.asm
@@ -1,4 +1,4 @@
-/* ************************************************************************************ */
+/****************************************************************************************/
/* */
/* File : r_loop.asm /_________/ */
/* Author : Joe | */
@@ -8,7 +8,7 @@
/* \ / */
/* \_____/ */
/* */
-/* ************************************************************************************ */
+/****************************************************************************************/
;; jo_r_loop(speak (0-1), *argv[])
;; -------------------------------
diff --git a/asm/r_lowbat.asm b/asm/r_lowbat.asm
index f721867..217efc3 100644
--- a/asm/r_lowbat.asm
+++ b/asm/r_lowbat.asm
@@ -1,4 +1,4 @@
-/* ************************************************************************************ */
+/****************************************************************************************/
/* */
/* File : r_lowbat.asm /_________/ */
/* Author : Joe | */
@@ -8,7 +8,7 @@
/* \ / */
/* \_____/ */
/* */
-/* ************************************************************************************ */
+/****************************************************************************************/
;; Files prefixes
;; --------------
diff --git a/src/n_notify.c b/src/n_notify.c
index 3ed6d40..94efe75 100644
--- a/src/n_notify.c
+++ b/src/n_notify.c
@@ -1,4 +1,4 @@
-/* ************************************************************************************ */
+/****************************************************************************************/
/* */
/* File : n_notify.c /_________/ */
/* Author : Joe | */
@@ -8,7 +8,7 @@
/* \ / */
/* \_____/ */
/* */
-/* ************************************************************************************ */
+/****************************************************************************************/
#include <jo_n_notify.h>
diff --git a/src/n_notify.h b/src/n_notify.h
index 0c69fa7..32ccd41 100644
--- a/src/n_notify.h
+++ b/src/n_notify.h
@@ -1,4 +1,4 @@
-/* ************************************************************************************ */
+/****************************************************************************************/
/* */
/* File : n_notify.h /_________/ */
/* Author : Joe | */
@@ -8,7 +8,7 @@
/* \ / */
/* \_____/ */
/* */
-/* ************************************************************************************ */
+/****************************************************************************************/
#ifndef JO_N_NOTIFY_H
#define JO_N_NOTIFY_H
diff --git a/src/n_speak.c b/src/n_speak.c
index c6d46f0..0146e82 100644
--- a/src/n_speak.c
+++ b/src/n_speak.c
@@ -1,4 +1,4 @@
-/* ************************************************************************************ */
+/****************************************************************************************/
/* */
/* File : n_speak.c /_________/ */
/* Author : Joe | */
@@ -8,7 +8,7 @@
/* \ / */
/* \_____/ */
/* */
-/* ************************************************************************************ */
+/****************************************************************************************/
#include <jo_n_speak.h>
diff --git a/src/n_speak.h b/src/n_speak.h
index dd65b7e..19d064c 100644
--- a/src/n_speak.h
+++ b/src/n_speak.h
@@ -1,4 +1,4 @@
-/* ************************************************************************************ */
+/****************************************************************************************/
/* */
/* File : n_speak.h /_________/ */
/* Author : Joe | */
@@ -8,7 +8,7 @@
/* \ / */
/* \_____/ */
/* */
-/* ************************************************************************************ */
+/****************************************************************************************/
#ifndef JO_N_SPEAK_H
#define JO_N_SPEAK_H