aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/io/io.h
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/io.h
parent38610cd06dc0b5a3a4ee46f5fe7c341191aa2bc1 (diff)
Many debugging/serial improvements
Sorry for the little information, but I did many things :)
Diffstat (limited to 'src/kernel/io/io.h')
-rw-r--r--src/kernel/io/io.h18
1 files changed, 0 insertions, 18 deletions
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