Programs: Difference between revisions

Content added Content deleted
Line 21: Line 21:
While inputs can be read anywhere in your program, it can be helpful to organize them into a small section that can be run through at points where it really matters.
While inputs can be read anywhere in your program, it can be helpful to organize them into a small section that can be run through at points where it really matters.


IF DI[101] = ON JMP LBL[4]
'''IF DI[101] = ON JMP LBL[4]'''

IF DI[102] = ON JMP LBL[5]
IF DI[103] = ON JMP LBL[6]
'''IF DI[102] = ON JMP LBL[5]'''

IF DI[104] = ON JMP LBL[7]
JMP LBL[8]
'''IF DI[103] = ON JMP LBL[6]'''

'''IF DI[104] = ON JMP LBL[7]'''

'''JMP LBL[8]'''


<br />
<br />