diff options
author | Michael Walle <michael@walle.cc> | 2011-03-07 23:00:13 +0100 |
---|---|---|
committer | Edgar E. Iglesias <edgar.iglesias@gmail.com> | 2011-03-31 08:54:05 +0200 |
commit | fcda98630b121a63c9de0705df02e59f4dc2fecc (patch) | |
tree | 9852e155b5db98e5346fb950b5ce6fc42f35b9ff /target-lm32/translate.c | |
parent | 4d54ec7898bd951007cb6122d5315584bd41d0c4 (diff) |
lm32: rename raise opcode to scall
To be consistent with the new reference manual.
Signed-off-by: Michael Walle <michael@walle.cc>
Signed-off-by: Edgar E. Iglesias <edgar.iglesias@gmail.com>
Diffstat (limited to 'target-lm32/translate.c')
-rw-r--r-- | target-lm32/translate.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/target-lm32/translate.c b/target-lm32/translate.c index 0b0e405fe7..aa08a142e2 100644 --- a/target-lm32/translate.c +++ b/target-lm32/translate.c @@ -583,7 +583,7 @@ static void dec_orhi(DisasContext *dc) tcg_gen_ori_tl(cpu_R[dc->r1], cpu_R[dc->r0], (dc->imm16 << 16)); } -static void dec_raise(DisasContext *dc) +static void dec_scall(DisasContext *dc) { TCGv t0; int l1; @@ -1002,7 +1002,7 @@ static const DecoderInfo decinfo[] = { {DEC_NOR, dec_nor}, {DEC_OR, dec_or}, {DEC_ORHI, dec_orhi}, - {DEC_RAISE, dec_raise}, + {DEC_SCALL, dec_scall}, {DEC_RCSR, dec_rcsr}, {DEC_SB, dec_sb}, {DEC_SEXTB, dec_sextb}, |