initial commit

This commit is contained in:
2026-07-18 20:34:55 +02:00
commit 59ad004c96
474 changed files with 226635 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
#ifndef AUTOTEST_H
#define AUTOTEST_H
struct TestIO
{
volatile char cnt0, cnt1;
volatile unsigned dmaddr;
volatile char dmdata;
volatile char mirror0, mirror1, mirror2;
volatile long cycles;
volatile char scratch[4];
};
#define testio (*((struct TestIO *)0xdd80))
#define testio2 (*((struct TestIO *)0xdd90))
#endif