summaryrefslogtreecommitdiffstats
path: root/sw/z80/kernel/boot_loader.c
blob: b7873ec6d2299ac615644eaae4a13b45c799d1c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "boot.h"
#include "progman.h"

#define DEFAULT_EXEC_STATUS 0x4000

struct exec_status *status = EXEC_STATUS; 

void boot_init() {

    *status = DEFAULT_EXEC_STATUS;

    // TODO other stuff
}