mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-13 18:17:39 -04:00
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18679 a1c6a512-1295-4272-9138-f99709370657
56 lines
1.5 KiB
ArmAsm
56 lines
1.5 KiB
ArmAsm
/* int ucl_nrv2e_decompress_8(const unsigned char *src, unsigned char *dst,
|
|
unsigned long *dst_len) */
|
|
|
|
.text
|
|
.global ucl_nrv2e_decompress_8
|
|
|
|
|
|
/* Vectors */
|
|
ldr pc, =start
|
|
.word 0
|
|
.word 0
|
|
.word 0
|
|
.word 0
|
|
.word 0
|
|
.word 0
|
|
.word 0
|
|
|
|
/* These values are filled in by mkamsboot - don't move them from offset 0x20 */
|
|
ucl_unpack: .word 0 /* Entry point (plus 1 - for thumb) of ucl_unpack */
|
|
ucl_start: .word 0 /* Start of the ucl-compressed OF image */
|
|
ucl_size: .word 0 /* Length in bytes of the compressed OF image */
|
|
|
|
|
|
start:
|
|
/* A delay loop - just to prove we're running */
|
|
mov r1, #0x500000 /* Approximately 5 seconds */
|
|
loop: subs r1, r1, #1
|
|
bne loop
|
|
|
|
/* First copy the compressed firmware to unused RAM */
|
|
|
|
ldr r0, ucl_start /* Source */
|
|
ldr r1, ucl_size /* Source length */
|
|
|
|
mov r2, #0x40000 /* Destination end */
|
|
sub r2, r2, r1
|
|
|
|
memcpy:
|
|
ldrb r3, [r0]
|
|
strb r3, [r2]
|
|
adds r0, r0, #1
|
|
adds r2, r2, #1
|
|
cmp r2, #0x40000 /* Stop when we reached dest_end */
|
|
bne memcpy
|
|
|
|
sub r0, r2, r1 /* Point to the compressed firmware */
|
|
|
|
/* Call the ucl decompress function, which will branch to 0x0 */
|
|
/* on completion */
|
|
|
|
mov r2, #0 /* Destination */
|
|
|
|
ldr r3, ucl_unpack
|
|
bx r3
|
|
|
|
/* never reached */
|