]> Joshua Wise's Git repositories - fpgaboy.git/blob - auxboot.c
Fix stupid ethernet bug
[fpgaboy.git] / auxboot.c
1 #include <stdio.h>
2
3 void 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
12 void 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.022628 seconds and 4 git commands to generate.