Remove the main function, it's not needed anymore

This commit is contained in:
Maschell 2020-06-03 19:28:55 +02:00
parent 8f9f196c8e
commit 9e015bf531

View File

@ -72,8 +72,6 @@ void KernelReadSRsInternalFunc(sr_table_t * table) {
} }
void KernelWriteSRsInternalFunc(sr_table_t * table) { void KernelWriteSRsInternalFunc(sr_table_t * table) {
uint32_t i = 0;
asm volatile("eieio; isync"); asm volatile("eieio; isync");
// Writing didn't work for all at once so we only write number 8. // Writing didn't work for all at once so we only write number 8.
@ -188,7 +186,3 @@ void kernelInitialize() {
WUMS_INITIALIZE(){ WUMS_INITIALIZE(){
kernelInitialize(); kernelInitialize();
} }
int main(int argc, char **argv) {
return 0;
}