projects
/
YACASL2.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
ブレークポイントを扱うハッシュ関数のテストを追加
[YACASL2.git]
/
test
/
unit
/
bpshash
/
cmd.c
1
#include "debugger.h"
2
3
int main()
4
{
5
int i;
6
WORD w[10] ={0, 1, 2, 3, 10, 250, 251, 254, 0x8FFF, 65535};
7
for(i = 0; i < 10; i++) {
8
printf("%ld: %d\n", (long)w[i], adrhash(w[i]));
9
}
10
return 0;
11
}