new regression tests

This commit is contained in:
Blaise Tine
2021-08-02 16:05:33 -07:00
parent 6525dff158
commit 91d4419fae
11 changed files with 612 additions and 8 deletions

View File

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