Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.9k views
in Technique[技术] by (71.8m points)

assembly - use slt to check unsigned integer addition carry flag mips

I'm new to Assembly and I know this is a fair easy question. I supposed to do unsigned integer addition for $a0 and $a2 and store the result in $v0 by checking the carry flag.

The assignment says:

Use only addu, not add, for adding and use slt for determining if the addition of two unsigned integers produced a carry, without using conditional branch instructions.

Here is my code:

addu $v0, $a0, $a2
sltu $t0, $v0, $a0

For this code, if a carry is produced, $t0 equals 1. But the question said use only slt to check the carry flag and no conditional branch instruction can be used. I'm a little bit confused about how this is gonna to work. Any help would be appreciated.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

OK, the professor said he got the question wrong, using addu and sltu are fine.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...