#ifndef MELVIX_SYSTEM_H #define MELVIX_SYSTEM_H #include #include #include /** * The kernel end */ extern void ASM_KERNEL_END(); /** * The initial stack pointer */ uint32_t initial_esp; /** * Initialize the basic features of the OS */ void init(); /** * The ASM registers as packed structure */ typedef struct __attribute__((packed)) { unsigned short di, si, bp, sp, bx, dx, cx, ax; unsigned short gs, fs, es, ds, eflags; } regs16_t; /** * Execute BIOS interrupts by switching to real mode * @param intnum The interrupt number (e.g. 0x10) * @param regs The ASM registers */ extern void int32(unsigned char intnum, regs16_t *regs); /** * The vga log buffer to transfer the logs to VESA */ char *vga_buffer; /** * Log a message before VESA has been initialized * @param msg The message */ void vga_log(char *msg); /** * Display a general log message * @param fmt The message */ void _debug(const char *f, const char *fmt, ...); #define debug(fmt, ...) _debug(__func__, fmt, ##__VA_ARGS__) /** * Display an information message * @param fmt The information */ void _info(const char *f, const char *fmt, ...); #define info(fmt, ...) _info(__func__, fmt, ##__VA_ARGS__) /** * Display a warning message * @param fmt The warning cause/reason */ void _warn(const char *f, const char *fmt, ...); #define warn(fmt, ...) _warn(__func__, fmt, ##__VA_ARGS__) /** * Log into serial console * @param fmt The log message */ void _log(const char *f, const char *fmt, ...); #define log(fmt, ...) _log(__func__, fmt, ##__VA_ARGS__) /** * Halt the entire system and display a message * @param msg The error cause/reason */ void _panic(const char *f, const char *msg); #define panic(msg) _panic(__func__, msg) /** * Assert that a value is non-zero, else panic * @param x The value */ void _assert(const char *f, int x); #define assert(x) _assert(__func__, x) /** * Creates an infinite halt loop */ void halt_loop(); /** * Executes int32 with paging disable/enable * @param code The interrupt code * @param regs The registers */ void v86(uint8_t code, regs16_t *regs); // Colors #define RED "\x1B[31m" #define GRN "\x1B[32m" #define YEL "\x1B[33m" #define BLU "\x1B[34m" #define MAG "\x1B[35m" #define CYN "\x1B[36m" #define WHT "\x1B[37m" #define RES "\x1B[0m" #endif