Enable interrupts

This commit is contained in:
Loic Guegan 2021-04-21 18:54:50 +02:00
parent 2f712d027b
commit 99019721a9
8 changed files with 132 additions and 48 deletions
src/libs

View file

@ -8,18 +8,13 @@ extern void (*__putchar)(char);
/**
* Print a char* in the framebuffer
*/
void printk(char *,...);
extern "C" void printk(char *,...);
/**
* Print a char*
*/
void print(char *s);
/**
* Print a char in the framebuffer
*/
void printc(char *, VIDEO_COLORS c);
/**
* Print an integer using itoa()
*/
@ -30,7 +25,3 @@ void printi(int i);
*/
void printh(int h);
/**
* Print an integer as hex using itoh() truncated to size
*/
void printh(int h, u32 size);