Skip to content

Sample programs

Pavel Dovgalyuk edited this page Nov 26, 2016 · 57 revisions

Fibonacci sequence

  MOVI A, 1
 Label:
  ADD C, B, A
  MOV A, B
  MOV B, C
  JMP Label

Clone this wiki locally