1
0
Fork 0
forked from len0rd/rockbox

wasteful alignment fixed, thanks Jens

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4336 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Jörg Hohensohn 2004-03-03 07:13:43 +00:00
parent f858697a8d
commit 860586d992

View file

@ -19,11 +19,11 @@
.section .icode,"ax",@progbits
.align 4
.align 2 /* this aligns to 2^2=4 byte bounday */
.global _descramble
.type _descramble,@function
/* Descramble a block of byte data, from source to dest, processing len
/* Descramble a block of byte data, from source to dest, processing len
* bytes. Size only limited by the len argument. Note that len must
* be an even multiple of 4 (something rolo_load() already assumes.
* (Does the Archos firmware loader also require that?).