Complete the code to start an IT block that executes the next instruction if equal.
IT [1]The IT instruction starts a conditional block. 'EQ' means execute if equal (zero flag set).
Complete the IT block to execute two instructions if greater than.
IT [1]T'GT' means greater than. 'T' means the next instruction is also conditional.
Fix the error in the IT block that should execute three instructions if less or equal.
IT [1]TT'LE' means less or equal. 'TT' means the next two instructions are conditional.
Fill both blanks to create an IT block that executes four instructions if not equal.
IT [1][2]T
'NE' means not equal. 'T' after condition means next instruction is conditional. 'TT' means three instructions total, so 'TTT' means four instructions total. Here, 'TC' is not valid; the correct suffix to extend to four instructions is 'TT'.
Fill all three blanks to create an IT block that executes three instructions if greater or equal.
IT [1][2][3]
'GE' means greater or equal. Two 'T's after condition mean the next two instructions are conditional, so three instructions total.