diff options
| author | Aleksa Vuckovic <aleksav013@gmail.com> | 2022-09-03 23:53:53 +0200 |
|---|---|---|
| committer | Aleksa Vuckovic <aleksav013@gmail.com> | 2022-09-04 16:42:56 +0200 |
| commit | 6e9b3275d75e0cdbae1e8f7e4dda8880bb6346bc (patch) | |
| tree | d6c7daf073f41ec2df196a322e8d1210d8e126a1 /kernel/include/font.h | |
| parent | 11ced165e0df11cc3c889eb0cc402467361c421b (diff) | |
gdt & tss
Diffstat (limited to 'kernel/include/font.h')
| -rw-r--r-- | kernel/include/font.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/include/font.h b/kernel/include/font.h index f405a90..debaba9 100644 --- a/kernel/include/font.h +++ b/kernel/include/font.h @@ -19,7 +19,7 @@ typedef struct { /* font i used: /usr/share/kbd/consolefonts/lat9-16.psf.gz */ /* xxd -i font.psf */ -unsigned char font[] = { +const unsigned char font[] = { 0x72, 0xb5, 0x4a, 0x86, 0x00, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0xc3, @@ -365,6 +365,6 @@ unsigned char font[] = { 0x66, 0x66, 0x7c, 0x60, 0x60, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6c, 0x00, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0x7e, 0x06, 0x0c, 0xf8, 0x00 }; -unsigned int font_len = 4128; +const uint32_t font_len = 4128; #endif |
