Add sim65 tests

This commit is contained in:
Byron Lathi
2022-03-10 11:06:21 -06:00
parent eed7c21971
commit 6f3155cf35
4 changed files with 37 additions and 1 deletions

10
sw/tests/test_main.c Normal file
View File

@@ -0,0 +1,10 @@
#include <stdio.h>
#include <spi.h>
int main(void)
{
printf("Starting spi_write_byte test...\n");
spi_write_byte(0xa5);
printf("Done!\n");
return 0;
}