b1c4ba4ab6
Due to the ABI we are using we have to use the earm architecture moniker for the build system to behave correctly. This involves then some headers to move around. There is also a few related Makefile updates as well as minor source code corrections.
11 lines
198 B
C
11 lines
198 B
C
#ifndef MB_UTILS_H
|
|
#define MB_UTILS_H
|
|
|
|
#include "kernel/kernel.h"
|
|
|
|
void direct_cls(void);
|
|
void direct_print(const char*);
|
|
void direct_print_char(char);
|
|
int direct_read_char(unsigned char*);
|
|
|
|
#endif
|