mirror of
https://github.com/Russell-S-Harper/COMMON.git
synced 2024-11-04 15:05:41 +00:00
30 lines
307 B
Plaintext
30 lines
307 B
Plaintext
#include "rom.h"
|
|
#include "macros.h"
|
|
#include "globals.h"
|
|
|
|
* = $600
|
|
|
|
HDR(DEMO)
|
|
CMN
|
|
BRA(FACTORIAL)
|
|
ESC
|
|
BRK
|
|
|
|
BGN(FACTORIAL)
|
|
SET(R1, 9.4662)
|
|
SET(R2, 1)
|
|
MOD(R3, R1, R2)
|
|
SUB(R1, R1, R3)
|
|
_1 TST(R1)
|
|
BRZ(_2)
|
|
MUL(R2, R2, R1)
|
|
DCR(R1)
|
|
BRA(_1)
|
|
_2 ESC
|
|
BRK
|
|
END(FACTORIAL)
|
|
|
|
END(DEMO)
|
|
|
|
SVD_T .BYTE 0, 0, 0, 0
|