02-13-2022, 10:59 AM
Nice code, needs an ntsc-k port before it can be moved out of the incomplete category though
Also, you can do some similar optimisations on this code
Also, you can do some similar optimisations on this code
Code:
# Initialise as 3 by default
li r4, 0xXXX #Countdown Count '3' Sound
cmpwi r6, 1
blt end # 3
bgt num1
# Flows into num2 anyway without a branch
num2:
li r4, 0xYYY #Countdown Count '2' Sound
b end
num1:
li r4, 0xZZZ #Countdown Count '1' Sound
end: