16 lines
198 B
C
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
|