Some commands have Range as a parameter, like 'd' or 'i'. This is a substitute for a bunch of adress-modes:
d | from actual adress in Scrollmode down |
d a000 | a single adress |
d a000 b000 | forward from $a000 to $b000 |
d b000 a000 | backwards from $b000 to $a000 (screen scrolls up) |
d =a000 | from $a000 on backwards in Scrollmode |
d a000= | from $a000 on forward in Scrollmode |
d a000 = b000 | forward from $a000 to $b000 in Scrollmode |
d b000 = a000 | backwards from $b000 to $a000 in Scrollmode |
The default numeric system for all adresses is Hex.