aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/fs/load.h
blob: d4833ce04550e4d541e6190cee448e1f675e0e0e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef MELVIX_LOAD_H
#define MELVIX_LOAD_H

#include <stdint.h>

uint32_t userspace;

struct font *font;

struct font {
	uint16_t font_32[758][32];
	uint16_t font_24[758][24];
	uint8_t font_16[758][16];
	uint16_t cursor[19];
	uint32_t magic;
};

void load_binaries();

#endif