all repos — xyw @ b4405494fd2f54383c8bcc2357b0e6b6e0b34d02

A minimal virtual machine and assembler for terminals.

examples/factorial8.xyw

 1
 2
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
.include "devices.xyw"

; Main program: calculate and print factorial of 5
$5 fact JSRw 
print8 JSRw
$0A terminal.output STB
end JMPw

; Factorial subroutine
; a8 -- | [xy]
.label fact
  ; Save argument to both registers
  POPxy
  .label fact.loop 
    PSHy $0 EQU fact.end0 JCNw
    PSHy $1 EQU fact.end1 JCNw
    ; Decrement y and multiply
    DECy PSHx PSHy MULx POPx
    fact.loop JMPw
  .label fact.end0
    ; Edge case: factorial of 0 is 1
    $1
    CLRxy
    RTS
  .label fact.end1
    ; Return result
    PSHx
    CLRxy
    RTS

.include "print8.xyw"

.label end