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
|
#ifndef MELVIX_SYSTEM_H
#define MELVIX_SYSTEM_H
/**
* The kernel end
*/
extern void *end;
/**
* 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);
/**
* Log a message before VESA has been initialized
* @param msg The message
* @param line The hardcoded linenumber
*/
void vga_log(char *msg, int line);
/**
* Print the current kernel time
*/
void kernel_time();
/**
* Display a general log message
* @param msg The message
*/
void log(char *msg);
/**
* Display an information message
* @param msg The information
*/
void info(char *msg);
/**
* Display a warning message
* TODO: Add line number and file name
* @param msg The warning cause/reason
*/
void warn(char *msg);
/**
* Halt the entire system and display a message
* TODO: Add line number and file name
* @param msg The error cause/reason
*/
void panic(char *msg);
/**
* Assert that a value is non-zero, else panic
* TODO: Add line number and file name
* @param x The value
*/
void assert(int x);
#endif
|