git.joshuawise.com
/
fpgaboy.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
More files needed
[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.017508 seconds
and
4
git commands to generate.