Syncboot/include/kernel.h
Curle 4edd4b7cc8 Major refactor. Major improvements.
All ISR/IRQ stuff moved into its own header and source.

Comments added on all major parts.

Some optimisations in important functions.

All ASM removed for ISR and IRQ, instead using new GCC directives.
2019-06-27 19:57:54 +01:00

12 lines
205 B
C

/************************
*** Team Kitty, 2019 ***
*** ProjectRED ***
***********************/
#include <stdint.h>
#include <stddef.h>
#include <kernel/tty.h>
void panic(char*);
void gdb_end();