Added more test stuff

This commit is contained in:
Zane Kaminski 2020-09-06 00:00:50 -04:00
parent 75c06e1ccd
commit 8a90077d1e
2 changed files with 10 additions and 0 deletions

6
ramtest.h Normal file
View File

@ -0,0 +1,6 @@
#ifndef TEST_H
#define TEST_H
char test_run();
#endif /* TEST_H */

4
ramtestpat.c Normal file
View File

@ -0,0 +1,4 @@
#define RAMTESTPAT_SIZE 4097
char ramtestpat[RAMTESTPAT_SIZE] = {
1, 2, 3, 4, 5, 6, 7, 8, 9
};