Stuck on a question while looking over my past exam papers. The question reads 'What, if anything, is wrong with the following instructions?'
.text
dadd r2,r0,10
j r3
dsub r4,r1,N(r0)
Stuck on a question while looking over my past exam papers. The question reads 'What, if anything, is wrong with the following instructions?'
.text
dadd r2,r0,10
j r3
dsub r4,r1,N(r0)
Copyright © 2021 Jogjafile Inc.
That would depend on which assembler you're using. But if we assume that you're using an assembler that looks at the instructions strictly as-is:
The
dadd
instructions takes three registers as its operands. For the operandsr2,r0,10
you would usedaddi
(doubleword add immediate).The
j
instruction expects an absolute address (i.e.j some_label
). For register-indirect jumps you'd use thejr
instruction.Like
dadd
,dsub
also takes three registers as its operands. As far as I know there's no variant ofdsub
that accepts a memory location as one of its operands. This instruction would have to be split in two (e.g.ld r4,N(r0)
, followed bydsub r4,r1,r4
).