aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/io
diff options
context:
space:
mode:
authorMarvin Borner2019-12-21 22:22:03 +0100
committerMarvin Borner2019-12-21 22:22:03 +0100
commit499784a824c541001c2fd52ae95eba88dcfc952b (patch)
treec3c26d7c8a3b9291d909f4655b7d27a5ae2369bc /src/kernel/io
parent38610cd06dc0b5a3a4ee46f5fe7c341191aa2bc1 (diff)
Many debugging/serial improvements
Sorry for the little information, but I did many things :)
Diffstat (limited to 'src/kernel/io')
-rw-r--r--src/kernel/io/io.c46
-rw-r--r--src/kernel/io/io.h18
2 files changed, 1 insertions, 63 deletions
diff --git a/src/kernel/io/io.c b/src/kernel/io/io.c
index 6bd87e0..b54a859 100644
--- a/src/kernel/io/io.c
+++ b/src/kernel/io/io.c
@@ -1,9 +1,5 @@
#include <stdint.h>
-#include <kernel/lib/lib.h>
-#include <kernel/io/io.h>
#include <kernel/system.h>
-#include <kernel/lib/string.h>
-#include <kernel/lib/stdlib.h>
uint8_t inb(uint16_t port)
{
@@ -62,44 +58,4 @@ void serial_put(char ch)
{
while (is_transmit_empty() == 0);
outb(0x3f8, ch);
-}
-
-void serial_write(const char *data)
-{
- for (size_t i = 0; i < strlen(data); i++) {
- serial_put(data[i]);
- }
-}
-
-void serial_write_hex(int n)
-{
- int tmp;
-
- serial_write("0x");
- char noZeroes = 1;
-
- for (int i = 28; i > 0; i -= 4) {
- tmp = (n >> i) & 0xF;
- if (tmp == 0 && noZeroes != 0) continue;
-
- if (tmp >= 0xA) {
- noZeroes = 0;
- serial_put(tmp - 0xA + 'a');
- } else {
- noZeroes = 0;
- serial_put(tmp + '0');
- }
- }
-
- tmp = n & 0xF;
- if (tmp >= 0xA) {
- serial_put(tmp - 0xA + 'a');
- } else {
- serial_put(tmp + '0');
- }
-}
-
-void serial_write_dec(int n)
-{
- serial_write(itoa(n));
-}
+} \ No newline at end of file
diff --git a/src/kernel/io/io.h b/src/kernel/io/io.h
index 0ad5a54..b62e90f 100644
--- a/src/kernel/io/io.h
+++ b/src/kernel/io/io.h
@@ -56,22 +56,4 @@ void init_serial();
*/
void serial_put(char ch);
-/**
- * Write a string to the serial port (QEMU logging)
- * @param data The string
- */
-void serial_write(const char *data);
-
-/**
- * Write a hexadecimal formatted int to the serial port (QEMU logging)
- * @param n The decimal number
- */
-void serial_write_hex(int n);
-
-/**
- * Write a decimal number to the serial port (QEMU logging)
- * @param n The decimal number
- */
-void serial_write_dec(int n);
-
#endif