aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/system.h
blob: f9efe944e5ef1c41a033830e61e30d4811acbf2a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
#ifndef MELVIX_SYSTEM_H
#define MELVIX_SYSTEM_H

#include <multiboot.h>
#include <stddef.h>
#include <stdint.h>

/**
 * The ASM registers as packed structure
 */
typedef struct __attribute__((packed)) {
	u16 di, si, bp, sp, bx, dx, cx, ax;
	u16 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(u8 intnum, regs16_t *regs);

/**
 * 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(u8 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