summaryrefslogtreecommitdiff
path: root/firmware/target/mips/ingenic_x1000/crt0.S
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/target/mips/ingenic_x1000/crt0.S')
-rw-r--r--firmware/target/mips/ingenic_x1000/crt0.S3
1 files changed, 3 insertions, 0 deletions
diff --git a/firmware/target/mips/ingenic_x1000/crt0.S b/firmware/target/mips/ingenic_x1000/crt0.S
index b36500b462..304f8d682f 100644
--- a/firmware/target/mips/ingenic_x1000/crt0.S
+++ b/firmware/target/mips/ingenic_x1000/crt0.S
@@ -24,6 +24,7 @@
24 24
25 .text 25 .text
26 .extern main 26 .extern main
27 .extern system_early_init
27 .global _start 28 .global _start
28 29
29 .set push 30 .set push
@@ -92,6 +93,8 @@ _irqstack_loop:
92 sw t1, -4(t0) 93 sw t1, -4(t0)
93 94
94 /* Jump to C code */ 95 /* Jump to C code */
96 jal system_early_init
97 nop
95 j main 98 j main
96 nop 99 nop
97 100