basic test update

This commit is contained in:
Blaise Tine
2020-04-04 09:07:04 -04:00
parent 07ec0ef344
commit 0a8d829f15
8 changed files with 92 additions and 53 deletions

View File

@@ -0,0 +1,9 @@
#include <stdint.h>
void main() {
int64_t* x = (int64_t*)0x10000000;
int64_t* y = (int64_t*)0x20000000;
for (int i = 0; i < 8 * 4; ++i) {
y[i] = x[i];
}
}