15 lines
254 B
C
15 lines
254 B
C
|
|
#ifndef __CONSOLE_H__
|
|
#define __CONSOLE_H__
|
|
|
|
#include "x86/vgacons.h"
|
|
|
|
// Placeholder until a proper console driver is made
|
|
|
|
#define Console_Init VGA_Init
|
|
#define Console_Putc VGA_Putc
|
|
#define Console_Puts VGA_Puts
|
|
|
|
#endif /* __CONSOLE_H__ */
|
|
|