test layout fixes

This commit is contained in:
Blaise Tine
2021-06-13 17:59:06 -07:00
parent 03406c0a3f
commit cadff791ab
23 changed files with 68 additions and 73 deletions

View File

@@ -0,0 +1,14 @@
#ifndef _COMMON_H_
#define _COMMON_H_
#define KERNEL_ARG_DEV_MEM_ADDR 0x7ffff000
struct kernel_arg_t {
uint32_t num_tasks;
uint32_t task_size;
uint32_t src0_ptr;
uint32_t src1_ptr;
uint32_t dst_ptr;
};
#endif