diff options
Diffstat (limited to 'src/kernel/io/io.h')
-rw-r--r-- | src/kernel/io/io.h | 18 |
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 |