aboutsummaryrefslogtreecommitdiff
path: root/module/crc.m
diff options
context:
space:
mode:
authorbhgv <bhgv.empire@gmail.com>2018-03-01 16:54:45 +0200
committerbhgv <bhgv.empire@gmail.com>2018-03-01 16:54:45 +0200
commitb786f20bbab5a59046aa78a2c6c2a11536497202 (patch)
tree0851ecdec889eb9b7ba3751cc04d4f0b474e4a9e /module/crc.m
inferno-os tree was separated from the inferno-os-android (separated from the Android driver)
Diffstat (limited to 'module/crc.m')
-rw-r--r--module/crc.m23
1 files changed, 23 insertions, 0 deletions
diff --git a/module/crc.m b/module/crc.m
new file mode 100644
index 0000000..408af38
--- /dev/null
+++ b/module/crc.m
@@ -0,0 +1,23 @@
+Crc: module
+{
+ PATH: con "/dis/lib/crc.dis";
+
+ CRCstate: adt {
+ crc: int;
+ crctab: array of int;
+ reg: int;
+ };
+
+ # setup crc table with given polynomial (if 0 default polynomial used)
+ # (the polynomial has an implicit top bit set)
+ # reg is the initial value of the CRC register
+ # (usually 0 but 16rfffffffrf in the CRC32 algorithm for example)
+ init: fn(poly: int, reg: int): ref CRCstate;
+
+ # calculate crc of first nb bytes in given array of bytes and return its value
+ # may be called repeatedly to calculate crc of a series of arrays of bytes
+ crc : fn(state: ref CRCstate, buf: array of byte, nb: int): int;
+
+ # reset crc state to its initial value
+ reset: fn(state: ref CRCstate);
+};