Added 64 bit basic test

This commit is contained in:
Santosh Raghav Srivatsan
2021-11-27 12:36:26 -05:00
parent 64d47f3637
commit a48a78088c
5 changed files with 541 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
#ifndef _COMMON_H_
#define _COMMON_H_
#define KERNEL_ARG_DEV_MEM_ADDR 0x7ffff000
typedef struct {
uint32_t count;
uint32_t src_ptr;
uint32_t dst_ptr;
} kernel_arg_t;
#endif