/* * The kernel build system appends the size of the * decompressed kernel at the end of the compressed data * in little-endian form. */ ldrb r9, [r10, #0] ldrb lr, [r10, #1] orr r9, r9, lr, lsl #8 ldrb lr, [r10, #2] ldrb r10, [r10, #3] orr r9, r9, lr, lsl #16 orr r9, r9, r10, lsl #24
ldr r9 [r10]
MOV r0,#0x00 MOV r1,#0x11 MOV r2,#0x22 MOV r3,#0x33 STRB r0,[r4,#0] STRB r1,[r4,#1] STRB r2,[r4,#2] STRB r3,[r4,#3] LDR r5,[r4] // Little-endian r5=0x33221100, big-endian r5=0x00112233