794dae7084
- Reorganized src/inc into arch, drivers, core, shell - Updated CMakeLists.txt for multi-arch support - Added basic scancode-to-ASCII mapping (US QWERTY) - Initial KSH (Kernel Shell) skeleton - WIP: Keyboard modifier handling
8 lines
87 B
C
8 lines
87 B
C
#ifndef FONT_H
|
|
#define FONT_H
|
|
|
|
#include <types.h>
|
|
|
|
extern u8 font8x16[128][16];
|
|
|
|
#endif |