5 private static int[] crc_lookup
=new int[256];
7 public byte[] header_base
= new byte [10];
10 internal int checksum() {
14 crc_reg
= (crc_reg
<<8)^
(uint)(crc_lookup
[((crc_reg
>> 24)&0xff)^
(header_base
[header
+i
]&0xff)]);
21 public static int Main () {
22 Test t1
= new Test ();