diff options
author | Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> | 2008-04-17 23:35:13 +0900 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2008-04-18 00:47:29 -0700 |
commit | 43c509254fab375c49936498da944658117ed07c (patch) | |
tree | 8b730dcbc1498dee9303af405099d32aaa3f79bb /board/qemu-mips | |
parent | 7ce63709828d37b08866e537339a169bd0db2bd3 (diff) |
Use jr as register jump instruction
Current assembler codes are inconsistent in the way of register jump
instruction usage; some use jr, some use j. Of course GNU as allows both
usages, but as can be expected from `Jump Register' the mnemonic `jr' is
more intuitive than `j'. For example, Linux doesn't have `j <reg>' usage
at all.
Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
Diffstat (limited to 'board/qemu-mips')
-rw-r--r-- | board/qemu-mips/lowlevel_init.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/qemu-mips/lowlevel_init.S b/board/qemu-mips/lowlevel_init.S index 28166bcebaa..836e0271a1c 100644 --- a/board/qemu-mips/lowlevel_init.S +++ b/board/qemu-mips/lowlevel_init.S @@ -37,5 +37,5 @@ lowlevel_init: mtc0 zero, CP0_WIRED nop - j ra + jr ra nop |