diff options
author | vetch <vetch97@gmail.com> | 2020-01-04 19:38:36 +0100 |
---|---|---|
committer | vetch <vetch97@gmail.com> | 2020-01-04 19:38:36 +0100 |
commit | 5d5ba341d770017eeb392e186e21fbf887a97d2e (patch) | |
tree | 5ac189693f6fbfca5b4da4b2d82fe55f43e9da41 /src/boot | |
parent | ce9063ce4cdf4dcfdb80c2d861fb8c794db31719 (diff) | |
download | rpi-MMU-example-5d5ba341d770017eeb392e186e21fbf887a97d2e.tar.gz rpi-MMU-example-5d5ba341d770017eeb392e186e21fbf887a97d2e.zip |
Added missing files
Diffstat (limited to 'src/boot')
-rw-r--r-- | src/boot/loader_stage2.c | 6 | ||||
-rw-r--r-- | src/boot/setup.c | 16 |
2 files changed, 11 insertions, 11 deletions
diff --git a/src/boot/loader_stage2.c b/src/boot/loader_stage2.c index fc3ae1c..e08756b 100644 --- a/src/boot/loader_stage2.c +++ b/src/boot/loader_stage2.c @@ -1,8 +1,8 @@ #include <stddef.h> #include <stdint.h> -#include "uart.h" -#include "io.h" -#include "global.h" +#include "../utils/uart.h" +#include "../utils/io.h" +#include "../global.h" void *const kernel_load_addr = ((void*) 0x8000); diff --git a/src/boot/setup.c b/src/boot/setup.c index a96b19e..2f74e64 100644 --- a/src/boot/setup.c +++ b/src/boot/setup.c @@ -1,12 +1,12 @@ -#include "uart.h" -#include "utils/io.h" -#include "demo_functionality.h" -#include "paging.h" -#include "atags.h" +#include "../utils/uart.h" +#include "../utils/io.h" +#include "../demo/demo_functionality.h" +#include "../memory/paging.h" +#include "../atags/atags.h" // for POWER_OF_2() macro... perhaps the macro should be moved -#include "memory.h" -#include "armclock.h" -#include "scheduler.h" +#include "../memory/memory.h" +#include "../clock/armclock.h" +#include "../scheduler.h" void setup(uint32_t r0, uint32_t machine_type, struct atag_header *atags) |