diff options
-rw-r--r-- | target/linux/generic/image/lzma-loader/src/start.S | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/target/linux/generic/image/lzma-loader/src/start.S b/target/linux/generic/image/lzma-loader/src/start.S index 827458017e..f025dabedd 100644 --- a/target/linux/generic/image/lzma-loader/src/start.S +++ b/target/linux/generic/image/lzma-loader/src/start.S @@ -145,15 +145,15 @@ nodc: addu t0,s3 noic: /* jump to main */ - move a0,s3 /* icache line size */ - move a1,s4 /* icache size */ - move a2,s1 /* dcache line size */ + move a0,s4 /* icache size */ + move a1,s3 /* icache line size */ + move a2,s2 /* dcache size */ #ifdef IMAGE_COPY jal t2 #else jal entry #endif - move a3,s2 /* dcache size */ + move a3,s1 /* dcache line size */ .set reorder END(_start) |