The 6809 is an 8 bit microprocessor,
LEA lets you do 16 bit add/subtract arithmetic using the 6809 Effective Address instructions.
LDA #$5F
puts the hex number 5F in the accumulator, A
LDA $5F
copies the number that is in the 16 bit ram address $005F, to A.
LDA ($5F)
copies to A the number in ram at the address that is in the address $005F
LDA (7,$5F)
same as above, but adds 7 to the address. But which address is the 7 added to? You need to read the manual. But the manual is sometimes wrong.
LEA
allows you to get at the effective addresses that the 6809 calculates, for your own purposes, and allows the 6809 to do some 16 bit arithmetic.
LEAX 1,X
this just increments the number in the X register, and I think sets the flags. I don't remember if there is an INCX instruction. The again, INCX might not affect the flags.
In the Z80 chip, you can decrement the BC 16 bit register, but it doesn't set the flags, so you end up doing something like this:
Code: Select all
PUSH A
LD B
XOR C ; it's either AND or OR or XOR
POP A
If you don't care about A you do not need the PUSH POP.
The 6809 is much nicer to program than the Z80, 8080, 6800, 6502
LEA allows you to get at the 16 bit effective addresses that the 6809 calculates
You might be interested in FreeForth http://christophe.lavarenne.free.fr/ff/
Very small and a bit different.
gforth is a mainstream Linux forth.
Levanthal wrote books for learning the 6809 and the Z80.
The 6809 Cookbook
is not a bad book.
There are books to learn 6809 programming on the Radio Shack computers, for example, the CoCo Color Computers.
even the simple 8080 processor can solve the same class of problem that the 100kW early monsters could solve
I remember writing a program in Basic b20 on a Dec PDP 10 to print pythagorean integer triplets.I left it running all night, detached from a terminal. It took about 3 or 4 hours.
I wrote the same program in FreeForth, the program takes a fraction of a second to run,
Code: Select all
\ Pythagorean Triplets (FreeForth)
."^JPythagorean_Triplets_a\^2_+_b\^2_=_c\^2_;_a,b,c_<_256^J^J"
variable a
variable a2
variable b
variable b2
variable ab2
+longconds
: tab 9 emit ;
: pythag
256 TIMES 255 r - dup a ! dup * a2 !
r TIMES 255 r - dup b ! dup * b2 ! a2 @ b2 @ + ab2 !
r TIMES ab2 @ 255 r - dup * =
drop drop
IF a @ . tab b @ . tab 255 r - . cr BREAK
REPEAT
REPEAT
REPEAT ;
pythag bye ;
I wrote 4 or 5 programs, this is the slowest, but the code is clearer.
I assume you know about http://rosettacode.org/wiki/Rosetta_Code