I pray that you work...

This commit is contained in:
Jonathan Turner 2023-11-29 07:53:48 -05:00
parent d92f343ab4
commit 83cf16d15a
2 changed files with 4 additions and 4 deletions

View File

@ -1,5 +1,9 @@
#include "kernel.h"
// Standard Bois
#include <string.h>
#include <stdlib.h>
// This only runs once and from there on forth only interrupts will cause something to happen
// e.g. displaying to screen and taking input from keyboard
void _start() {

View File

@ -1,10 +1,6 @@
#ifndef KERNEL_H
#define KERNEL_H
// Standard Bois
#include <string.h>
#include <stdlib.h>
// Others
#include "../cpu/isr.h"
#include "../drivers/screen.h"