Use 64bit pointers instead of 32bit pointers
This commit is contained in:
parent
106140ae11
commit
c575adb838
6
kernel.c
6
kernel.c
@ -1,9 +1,9 @@
|
||||
#include <stddef.h>
|
||||
#include <stdint.h>
|
||||
|
||||
volatile uint32_t** core_1 = (void*)0xE0;
|
||||
volatile uint32_t** core_2 = (void*)0xE8;
|
||||
volatile uint32_t** core_3 = (void*)0xF0;
|
||||
volatile uint64_t** core_1 = (void*)0xE0;
|
||||
volatile uint64_t** core_2 = (void*)0xE8;
|
||||
volatile uint64_t** core_3 = (void*)0xF0;
|
||||
|
||||
|
||||
void _start_core_1(void* addr) {
|
||||
|
Loading…
Reference in New Issue
Block a user