hazel/include/kernel/log.h

16 lines
198 B
C
Raw Normal View History

2024-06-27 18:36:32 -04:00
#ifndef HAZEL_LOG_H_
#define HAZEL_LOG_H_
2024-07-01 19:28:45 -04:00
#include <printf.h>
2024-06-27 18:36:32 -04:00
typedef enum {
LOG_COM1,
LOG_VGA,
} log_method_t;
2024-07-01 19:28:45 -04:00
#define LOG(...) printf(__VA_ARGS__);
2024-06-27 18:36:32 -04:00
void logs(const char *str);
#endif