diff options
| author | Anghelo Carvajal <angheloalf95@gmail.com> | 2023-08-09 21:21:12 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-08-09 21:21:12 -0400 |
| commit | fd54debbf2d18c7c9bfdd10bd42aab5abe9266a2 (patch) | |
| tree | 4dc24ddd4fdc4210022b7d9a8c631d45020e3d11 /src/boot | |
| parent | 56b4e612cc8fc1af7c051592e850ca1aac02e39e (diff) | |
`libu64.a` identification (#43)
* identify debug
* identify gfxprint.c and gfxprint_data.c
* pad.c
* fix
* stackcheck
* loadfragment and logseverity
* mtxconv
* comment
* Revert "loadfragment and logseverity"
This reverts commit 34d8214aa3869a518db8c9b59dc06361e8507418.
* review
* fix
* another fix
* fix
Diffstat (limited to 'src/boot')
| -rw-r--r-- | src/boot/boot_main.c | 2 | ||||
| -rw-r--r-- | src/boot/idle.c | 2 | ||||
| -rw-r--r-- | src/boot/libu64/pad.c (renamed from src/boot/O2/padutils.c) | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/boot/boot_main.c b/src/boot/boot_main.c index 3ccd5e6..2ae5cfa 100644 --- a/src/boot/boot_main.c +++ b/src/boot/boot_main.c @@ -4,7 +4,7 @@ #include "m_thread.h" #include "segment_symbols.h" #include "stack.h" -#include "stackcheck.h" +#include "libu64/stackcheck.h" STACK(sIdleStack, 0x400); StackEntry sIdleStackInfo; diff --git a/src/boot/idle.c b/src/boot/idle.c index 0acda33..a958fd6 100644 --- a/src/boot/idle.c +++ b/src/boot/idle.c @@ -6,7 +6,7 @@ #include "m_thread.h" #include "segment_symbols.h" #include "stack.h" -#include "stackcheck.h" +#include "libu64/stackcheck.h" #include "z_std_dma.h" OSThread sMainThread; diff --git a/src/boot/O2/padutils.c b/src/boot/libu64/pad.c index 73745ac..9b82212 100644 --- a/src/boot/O2/padutils.c +++ b/src/boot/libu64/pad.c @@ -1,4 +1,4 @@ -#include "padutils.h" +#include "libu64/pad.h" void pad_init(Input* input) { bzero(input, sizeof(Input)); |
