MIPS: Multiple translations for seq pseudo-instruction

0

I've found references for translating the Set on EQual pseudo instruction into:

xor d,s,t
sltiu d,d,1

as well as:

addi $1, $0, 0x00000000
subu $8, $8, $1
ori $1, $0, 0x00000001
sltu 48, $8, $1

as well as a reference that says it can be translated into a a instruction combination.

Specifically, I'd like to translate:

seq $t0, $t0, 0

I suspect the answer has to do with the form of the parameters but I haven't found a good reference.

Can someone tell me the correct way to translate seq $t0, $t0, 0 and then point me to a reference that I can use for future questions?

Thanks!

mips
seq
asked on Stack Overflow Nov 1, 2020 by Doug from CO • edited Nov 3, 2020 by meegle84

0 Answers

Nobody has answered this question yet.


User contributions licensed under CC BY-SA 3.0