2010-10-28 08:19:37 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* Copyright (C) 2010 by Spencer Oliver *
|
|
|
|
* spen@spen-soft.co.uk *
|
|
|
|
* *
|
|
|
|
* This program is free software; you can redistribute it and/or modify *
|
|
|
|
* it under the terms of the GNU General Public License as published by *
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or *
|
|
|
|
* (at your option) any later version. *
|
|
|
|
* *
|
|
|
|
* This program is distributed in the hope that it will be useful, *
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
|
|
|
* GNU General Public License for more details. *
|
|
|
|
* *
|
|
|
|
* You should have received a copy of the GNU General Public License *
|
|
|
|
* along with this program; if not, write to the *
|
|
|
|
* Free Software Foundation, Inc., *
|
2013-06-02 19:32:36 +00:00
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. *
|
2010-10-28 08:19:37 +00:00
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
/*
|
|
|
|
parameters:
|
|
|
|
r0 - address in - crc out
|
|
|
|
r1 - char count
|
|
|
|
*/
|
|
|
|
|
|
|
|
.text
|
|
|
|
.syntax unified
|
2012-05-01 08:46:07 +00:00
|
|
|
.cpu cortex-m0
|
2010-10-28 08:19:37 +00:00
|
|
|
.thumb
|
|
|
|
.thumb_func
|
2012-05-01 08:46:07 +00:00
|
|
|
|
2010-10-28 08:19:37 +00:00
|
|
|
.align 2
|
|
|
|
|
|
|
|
_start:
|
2012-05-01 08:46:07 +00:00
|
|
|
main:
|
2010-10-28 08:19:37 +00:00
|
|
|
mov r2, r0
|
2012-05-01 08:46:07 +00:00
|
|
|
movs r0, #0
|
|
|
|
mvns r0, r0
|
|
|
|
ldr r6, CRC32XOR
|
2010-10-28 08:19:37 +00:00
|
|
|
mov r3, r1
|
2012-05-01 08:46:07 +00:00
|
|
|
movs r4, #0
|
2010-10-28 08:19:37 +00:00
|
|
|
b ncomp
|
|
|
|
nbyte:
|
|
|
|
ldrb r1, [r2, r4]
|
2012-05-01 08:46:07 +00:00
|
|
|
lsls r1, r1, #24
|
|
|
|
eors r0, r0, r1
|
|
|
|
movs r5, #0
|
2010-10-28 08:19:37 +00:00
|
|
|
loop:
|
|
|
|
cmp r0, #0
|
2012-05-01 08:46:07 +00:00
|
|
|
bge notset
|
|
|
|
lsls r0, r0, #1
|
|
|
|
eors r0, r0, r6
|
|
|
|
b cont
|
|
|
|
notset:
|
|
|
|
lsls r0, r0, #1
|
|
|
|
cont:
|
|
|
|
adds r5, r5, #1
|
2010-10-28 08:19:37 +00:00
|
|
|
cmp r5, #8
|
|
|
|
bne loop
|
2012-05-01 08:46:07 +00:00
|
|
|
adds r4, r4, #1
|
2010-10-28 08:19:37 +00:00
|
|
|
ncomp:
|
|
|
|
cmp r4, r3
|
|
|
|
bne nbyte
|
|
|
|
bkpt #0
|
|
|
|
|
2012-05-01 08:46:07 +00:00
|
|
|
.align 2
|
|
|
|
|
2010-10-28 08:19:37 +00:00
|
|
|
CRC32XOR: .word 0x04c11db7
|
|
|
|
|
|
|
|
.end
|