ldaa, ldab, ldd, lds, ldx, ldy
| HLL Code | Corresponding Assembly Code |
|---|---|
a = value; | ldaa value |
b = value; | ldab value |
d = value; | ldd value |
s = value; | lds value |
x = value; | ldx value |
y = value; | ldy value |
value may be either a constant using # or a variable.
staa, stab, std, sts, stx, sty| HLL Code | Corresponding Assembly Code |
|---|---|
variable = a; | staa variable |
variable = b; | stab variable |
variable = d; | std variable |
variable = s; | sts variable |
variable = x; | stx variable |
variable = y; | sty variable |
tab, tap, tba, tpa, tsx, tsy, txs, tys, xgdx, xgdypula, pulb, pulx, puly
#sym Operand is symsym Operand is M[sym]
(eight bit)sym Operand is M[sym]
(sixteen bit)sym,x Operand is M[sym+x]sym,y Operand is M[sym+y]