new unaligned access kernel, update idle kernel

This commit is contained in:
Richard Yan
2024-10-24 17:13:13 -07:00
parent 8cc0c3bae4
commit fb928b5cda
9 changed files with 328 additions and 6 deletions

View File

@@ -0,0 +1,13 @@
#ifndef _COMMON_H_
#define _COMMON_H_
#include <cstdint>
#define KERNEL_ARG_DEV_MEM_ADDR 0x9fff0000
#define DEV_SMEM_START_ADDR 0xff000000
typedef struct {
uint32_t placeholder;
} kernel_arg_t;
#endif