Firmwares/semihosting_test/test.c

15 lines
190 B
C
Raw Normal View History

2024-02-26 20:41:13 +01:00
#include <stdint.h>
#include <stdio.h>
#include <unistd.h>
#include "platform.h"
#include "encoding.h"
#include "semihosting.h"
int main()
{
char c = sh_readc();
printf(c);
return 0;
}