]> Joshua Wise's Git repositories - fpgaboy.git/blame_incremental - auxboot.c
Add list of broken tests
[fpgaboy.git] / auxboot.c
... / ...
CommitLineData
1#include <stdio.h>
2
3void dowrite(char *s, int len)
4{
5 int i;
6 for (i=0; i<len; i++)
7 {
8 write(1, s+i, 1);
9 }
10}
11
12void main()
13{
14 char buf[259];
15 int sz;
16 buf[0] = '\e';
17 buf[1] = 'P';
18 read(0, buf+2, 256);
19 dowrite(buf, 257);
20}
This page took 0.022741 seconds and 4 git commands to generate.