MIPS MARS 计算给定文本文件的 crc.将 crc 32 更改为 crc 16 和 crc 8



一开始我必须说我是mips assembly lanuge和Stackoverflow的新手。

我有 mips 汇编语言的工作代码,它正在使用给定文本文件的查找表计算 crc 32,我想更改它以计算 crc 16 和 crc 8。

我几乎可以肯定,查找表已为所有情况正确生成:crc 32、crc 16 和 crc 8。我知道我应该更改 crc 16 的初始化值,例如 0xffff ,但这还不够。我认为问题是在更改此值后,该算法从查找表中获取错误的索引,对吗?

提前感谢任何帮助。

##### This subroutine first generates 256 words crc32 table for ASCII codes and then computes the actual crc32 checksum of the file
input:
$a1 = block
$v0 = length
output:
$v0 = crc32 checksum
crc32_checksum:
    li      $t0, 0xedb88320         # CRC32 code generator
    #li     $t0, 0xa001     # CRC16 code generator
    #li     $t0, 0x8c       # CRC8 code generator
    la      $t1, crc_tab        # address of the table to fill in
    li      $t2, 0      # load 0 into $t2
tab_gen:
    move    $t3, $t2        # move counter of 8 digit hex values packed into table to $t3
    li  $t4, 8      # digit/bit counter equals 8
tab_byte:
    and     $t5, $t3, 1     # AND data with 1
    beqz    $t5, shift      # branch to 'shift' if equal 0
    srl     $t3, $t3, 1     # shift right data
    xor     $t3, $t3, $t0   # XOR both values (shifted data with CRC polynomial)
    b       next        # branch to next 
shift:
    srl     $t3, $t3, 1     # shift right data
next:
    sub     $t4, $t4, 1     # decrese digit/bit counter
    bnez    $t4, tab_byte   # branch if byte/bit counter is not equal to zero
    sw      $t3, 0($t1)     # store 8 digit hex value
    add     $t1, $t1, 4     # move to the next address to be fill

    add     $t2, $t2, 1     # increase counter of 8 digit hex values packed into table
    bltu    $t2, 256, tab_gen   # branch until 256 8 digit hex values are packed into table

#### # Calculate the actual CRC32
    li      $t0, 0xffffffff # initialize crc value for CRC32 code
    #li     $t0, 0x0000     # initialize crc value for CRC16 code
    #li     $t0, 0xffff     # initialize crc value for CRC16 code
    #li     $t0, 0xff       # initialize crc value for CRC8 code
    la      $t1, crc_tab        # point to crc_tab
crc32:
    lbu     $t2, 0($a1)     # load byte of data
    add     $a1, $a1, 1     # advance the data pointer
    xor     $t2, $t2, $t0   # byte of data XOR with crc
    and     $t2, $t2, 0xff  # (byte of data XOR with crc) AND with 0xff (to produce a table index)
    sll     $t2, $t2, 2         # scale (*4) the index because of addressing 32-bit words
    add     $t2, $t2, $t1   # form the final address in the table
    lw      $t2, 0($t2)     # load a value from the table
    srl     $t3, $t0, 8     # crc shifted 8 bits right
    xor     $t0, $t2, $t3   # XOR both values (i.e. shifted crc and the value read from the table)

    sub     $v0, $v0, 1     # decrement the byte counter
    bnez    $v0, crc32      # repeat untill all bytes of data are processed
    not     $v0, $t0        # invert all bits of final crc
    move    $t7, $v0
    jr      $ra     # jump to return address

首先,我建议你更好地定义你的目标。 没有单一的"CRC 16"或单一的"CRC 8"。看看这个表,然后决定你想实现哪种版本的CRC16和CRC8。 (如果没有其他信息,我猜您对 CCITT 版本感兴趣。 根据我的经验,它们最普遍。

一旦你知道你要去哪里,试着谷歌搜索"ccitt 16伪代码",以获取有关16位算法的一些提示。 Dr. Dobbs链接很好,这个和这个(尽管它更适合硬件实现)。8位算法可以进行类似的研究。 尝试"ccitt 8 算法"。 这个链接是合理的。

一旦你掌握了伪代码,那么你就可以更好地在汇编程序中实现它。

最新更新