Groundwork

Change the payload loader location
Always set keys 0x18..0x1F
Set arm11 entrypoint correctly
This commit is contained in:
TuxSH
2017-05-17 13:02:01 +02:00
parent e029458b09
commit b9bc41a772
8 changed files with 48 additions and 31 deletions

View File

@@ -4,7 +4,7 @@ OUTPUT_ARCH(arm)
ENTRY(_start)
SECTIONS
{
. = 0x24FFFE00;
. = 0x27FFE000;
.text : ALIGN(4) { *(.text.start) *(.text*); . = ALIGN(4); }
.rodata : ALIGN(4) { *(.rodata*); . = ALIGN(4); }

View File

@@ -22,6 +22,7 @@
.align 4
.global _start
_start:
ldr sp, =0x27ffe000
b main
.global payloadSize