TSK3000A Generic Instruction - SEQ

Frozen Content

Instruction:    Set On Equal To

Assembler Format
Example
Translates to...

seq rC, rA, rB

seq $3, $4, $5

xor rC, rA, rB
sltiu rC, rC, 1

seq rC, rA, IMM32

seq $3, $4, 0x12345678

li $at, IMM32
xor rC, rA, $AT
sltiu rC, rC, 1

Notes

If IMM32 is in the range 0 to 216 - 1 (i.e. from 0000_0000h to 0000_FFFFh) then the second macro format translates to:

xori rC, rA, IMM32
sltiu rC, rC, 1

You are reporting an issue with the following selected text and/or image within the active document: