projects
/
akaros.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
vmrunkernel: Handle the INTERRUPT_WINDOW exit; print more info on unhandled exits
[akaros.git]
/
tests
/
peek.c
1
#include <stdio.h>
2
#include <stdlib.h>
3
4
void
5
main(int argc, char *argv[])
6
{
7
argc--,argv++;
8
while (argc > 0) {
9
unsigned char *p = (void *)strtoul(argv[0], 0, 0);
10
printf("%p shows %02x\n", p, *p);
11
argc--,argv++;
12
}
13
}