CeDOS - libcedos/start.c

libcedos/start.c (view raw)

1
2
3
4
5
6
7
8
9
10
11
12
13
#include "assembly.h"

#include <stdint.h>

#include "memory.h"

extern void main(char *args);

int _start(char *args) {
    malloc_init(0x20000000, 0x30000000);
    
    main(args);
}