hazel/include/kernel/log.h
2024-07-01 19:28:45 -04:00

16 lines
198 B
C

#ifndef HAZEL_LOG_H_
#define HAZEL_LOG_H_
#include <printf.h>
typedef enum {
LOG_COM1,
LOG_VGA,
} log_method_t;
#define LOG(...) printf(__VA_ARGS__);
void logs(const char *str);
#endif