Newer
Older
tree-os / src / kernel / kernel.c
@lukas lukas on 3 Aug 2021 493 bytes wip: add exceptions
#include <stdint.h>
#include <_stdio.h>
#include <tree-os.h>
#include <cursor.h>
#include <task.h>
#include <alloc.h>
#include <osTasks.h>
#include <interrupts.h>

extern uint32_t _kernel_end;

void kernelMain() {
    initMemoryAllocation(0x1000000); // initializing stacks after the kernel seems not to work :( otherwise, _kernel_end should be passed here
    initOSTasks();
    drawLogo();
    printf("initializing interrupts\n");
    initInterrupts();
    1/0;
    yields();
    while(1);
}