]> Joshua Wise's Git repositories - fpgaboy.git/blob - mashrom.c
5c252fe44cb5da993a6e8da8eac90f3a5ba80150
[fpgaboy.git] / mashrom.c
1 void main(int argc, char** argv)
2 {
3   int n = 1024;
4   int i;
5   if (argc >= 2)
6     n = atoi(argv[1]);
7   for (i = 0; i < n; i++)
8   {
9     unsigned char c;
10     if (read(0, &c, 1) < 1)
11       c = 0;
12     printf("%02x\n", c);
13   }
14 }
This page took 0.015376 seconds and 2 git commands to generate.