Update Java structure packing implementation.

Add a first JUnit test case, and associated autoconf files.
This commit is contained in:
Alex Gorrod
2013-02-12 21:00:49 +11:00
parent 12c649b0f4
commit 19fed99760
17 changed files with 1151 additions and 635 deletions

View File

@@ -32,6 +32,6 @@ class PackUtil {
public static byte GET_BITS(long x, int start, int end) {
return (byte)((x & ((1 << start) - 1)) >> end);
}
}