diff --git a/ramtest.h b/ramtest.h new file mode 100644 index 0000000..c9e8909 --- /dev/null +++ b/ramtest.h @@ -0,0 +1,6 @@ +#ifndef TEST_H +#define TEST_H + +char test_run(); + +#endif /* TEST_H */ diff --git a/ramtestpat.c b/ramtestpat.c new file mode 100644 index 0000000..fd3edc9 --- /dev/null +++ b/ramtestpat.c @@ -0,0 +1,4 @@ +#define RAMTESTPAT_SIZE 4097 +char ramtestpat[RAMTESTPAT_SIZE] = { + 1, 2, 3, 4, 5, 6, 7, 8, 9 +}; \ No newline at end of file