summaryrefslogtreecommitdiff
path: root/firmware/descramble.S
diff options
context:
space:
mode:
authorJörg Hohensohn <hohensoh@rockbox.org>2004-03-03 07:13:43 +0000
committerJörg Hohensohn <hohensoh@rockbox.org>2004-03-03 07:13:43 +0000
commit860586d992a1a434b3d40e594a755e5fb450f394 (patch)
tree81e589b43ed29e24a3e70f90c247498057916440 /firmware/descramble.S
parentf858697a8d078439bcfd1bb3e0d9f082fb586535 (diff)
downloadrockbox-860586d992a1a434b3d40e594a755e5fb450f394.tar.gz
rockbox-860586d992a1a434b3d40e594a755e5fb450f394.zip
wasteful alignment fixed, thanks Jens
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4336 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/descramble.S')
-rw-r--r--firmware/descramble.S4
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/descramble.S b/firmware/descramble.S
index ccde5d0e0a..e124f0ceff 100644
--- a/firmware/descramble.S
+++ b/firmware/descramble.S
@@ -19,11 +19,11 @@
19 19
20 .section .icode,"ax",@progbits 20 .section .icode,"ax",@progbits
21 21
22 .align 4 22 .align 2 /* this aligns to 2^2=4 byte bounday */
23 .global _descramble 23 .global _descramble
24 .type _descramble,@function 24 .type _descramble,@function
25 25
26/* Descramble a block of byte data, from source to dest, processing len 26/* Descramble a block of byte data, from source to dest, processing len
27 * bytes. Size only limited by the len argument. Note that len must 27 * bytes. Size only limited by the len argument. Note that len must
28 * be an even multiple of 4 (something rolo_load() already assumes. 28 * be an even multiple of 4 (something rolo_load() already assumes.
29 * (Does the Archos firmware loader also require that?). 29 * (Does the Archos firmware loader also require that?).