From 7ff724fe8f709440da9c730fdb8dcbaa4f989ed5 Mon Sep 17 00:00:00 2001 From: Benji Dial Date: Thu, 13 Aug 2020 23:59:14 -0400 Subject: FAT16 directory enumeration, making many functions static, new 'log' functions to wrap vga and serial --- src/kernel/log.h | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 src/kernel/log.h (limited to 'src/kernel/log.h') diff --git a/src/kernel/log.h b/src/kernel/log.h new file mode 100644 index 0000000..ff2a7a2 --- /dev/null +++ b/src/kernel/log.h @@ -0,0 +1,9 @@ +#ifndef LOG_H +#define LOG_H + +void init_log(); + +void logch(char ch); +void logsz(const char *sz); + +#endif \ No newline at end of file -- cgit v1.2.3