]> Joshua Wise's Git repositories - fpgaboy.git/blob - mashrom.c
Add cut 1 of a cellram module
[fpgaboy.git] / mashrom.c
1 int 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   return 0;
15 }
This page took 0.023372 seconds and 4 git commands to generate.