core: change types from uint32_t to u32 (e.g)

This commit is contained in:
2025-01-27 11:26:15 +01:00
parent 95fec015f2
commit d7626df19c
51 changed files with 422 additions and 374 deletions

View File

@ -2,6 +2,7 @@
#include "kpanic.h"
#include "kprintf.h"
#include "types.h"
#include <stdint.h>
#define PRINT_PTR(X) kprintf("%s:%u %s: %p\n", __FILE__, __LINE__, #X, X)
@ -17,13 +18,13 @@
} while (0)
struct function_entry {
uint32_t addr;
u32 addr;
char name[64];
};
struct stackframe {
struct stackframe *ebp;
uint32_t eip;
u32 eip;
};
void print_stack(void);