14 lines
207 B
C++
14 lines
207 B
C++
#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
|