Date: 02-16-2022
Return to Index
created by gbSnippets
'These are the same:
!ADD VAR, 1
VAR = VAR + 1
'Easy ASM replacements for BASIC code:
! inc var
! dec var
! add var, 1234
! sub var, 4321
'Loop
! mov clk, 100000000
lbl0:
mymod(1234,432)
! mov var, edx
! sub clk, 1
! jnz lbl0
'gbs_00767
'Date: 03-10-2012
http://www.garybeene.com/sw/gbsnippets.htm