diff options
author | Marvin Borner | 2019-10-26 22:15:29 +0200 |
---|---|---|
committer | Marvin Borner | 2019-10-26 22:15:29 +0200 |
commit | 5d4180c67cea08bb76eebde6b41b8935e60fed98 (patch) | |
tree | 1f3bd2be8e20dc754dcc73af36684fdc3642d7ba /src/kernel/io/io.h | |
parent | b2cf27bb1d8239a7ccc55c29df996370c8f1bed6 (diff) |
Improved VESA and fixed warnings
Diffstat (limited to 'src/kernel/io/io.h')
-rw-r--r-- | src/kernel/io/io.h | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/src/kernel/io/io.h b/src/kernel/io/io.h index a145319..3c618d6 100644 --- a/src/kernel/io/io.h +++ b/src/kernel/io/io.h @@ -51,20 +51,26 @@ void send_l(uint16_t port, uint32_t data); void init_serial(); /** + * Write a single char to the serial port (QEMU logging) + * @param ch The char + */ +void serial_put(char ch); + +/** * Write a string to the serial port (QEMU logging) - * @param data The string that should get transmitted + * @param data The string */ void serial_write(const char *data); /** - * Write a hex number to the serial port (QEMU logging) - * @param n The hex number that should get transmitted + * Write a hexadecimal formatted int to the serial port (QEMU logging) + * @param n The decimal number */ void serial_write_hex(int n); /** - * Write a dec number to the serial port (QEMU logging) - * @param n The dec number that should get transmitted + * Write a decimal number to the serial port (QEMU logging) + * @param n The decimal number */ void serial_write_dec(int n); |