test sources refactoring

This commit is contained in:
Blaise Tine
2021-10-09 10:51:43 -04:00
parent 54bddeee9c
commit ca1d97a3c2
28 changed files with 261 additions and 212 deletions

View File

@@ -3,10 +3,10 @@
#define KERNEL_ARG_DEV_MEM_ADDR 0x7ffff000
struct kernel_arg_t {
typedef struct {
uint32_t num_points;
uint32_t src_ptr;
uint32_t dst_ptr;
};
} kernel_arg_t;
#endif