;; simple assignment
;; 
.org 0
  jmp begin
a: 0
b: 10
c: 20
.org 100H
begin:
  lda b   ;; lda direct
  add c
  sta a
  jsr 1001
.end