forked from Bananymous/banan-os
33 lines
890 B
C++
33 lines
890 B
C++
#pragma once
|
|
|
|
#include <BAN/Formatter.h>
|
|
#include <kernel/PIT.h>
|
|
|
|
#define dprintln(...) \
|
|
do { \
|
|
BAN::Formatter::print<Serial::serial_putc>("[{5.3}] {}({}): ", (float)PIT::ms_since_boot() / 1000.0f, __FILE__, __LINE__); \
|
|
BAN::Formatter::println<Serial::serial_putc>(__VA_ARGS__); \
|
|
} while(false)
|
|
|
|
#define dwarnln(...) \
|
|
do { \
|
|
BAN::Formatter::print<Serial::serial_putc>("\e[33m"); \
|
|
dprintln(__VA_ARGS__); \
|
|
BAN::Formatter::print<Serial::serial_putc>("\e[m"); \
|
|
} while(false)
|
|
|
|
#define derrorln(...) \
|
|
do { \
|
|
BAN::Formatter::print<Serial::serial_putc>("\e[31m"); \
|
|
dprintln(__VA_ARGS__); \
|
|
BAN::Formatter::print<Serial::serial_putc>("\e[m"); \
|
|
} while(false)
|
|
|
|
namespace Serial
|
|
{
|
|
|
|
void initialize();
|
|
|
|
void serial_putc(char);
|
|
|
|
} |