07-01-2019, 04:21 PM
Btw I wanted to go ahead and ask about logical ANDs and how to do them for controller based if statements, because in your tutorial you have the logical AND listed as:
and r11, r11, 0x0880 #Logical AND
This causes issues because you can't have the 0x0880 in the AND instruction. This is only possible with the AND Immediate instruction, andi.
So how would this be done? Would it be:
andi. r11, r11 0x0880
Or would it be:
and r11, r11, r?
I need to know this so I can do controller if statements in my codes.
and r11, r11, 0x0880 #Logical AND
This causes issues because you can't have the 0x0880 in the AND instruction. This is only possible with the AND Immediate instruction, andi.
So how would this be done? Would it be:
andi. r11, r11 0x0880
Or would it be:
and r11, r11, r?
I need to know this so I can do controller if statements in my codes.
Super Mario Eclipse, what Super Mario Sunshine could've been.