wrote a println example in .dsa
This commit is contained in:
@@ -0,0 +1,33 @@
|
||||
db stack: 0x10000
|
||||
db screen: 0x20000
|
||||
db string: "Dominos sucks!"
|
||||
db length: 14
|
||||
|
||||
cll init
|
||||
cll start
|
||||
hlt
|
||||
|
||||
init:
|
||||
ldw stack, bpr
|
||||
mov bpr, spr
|
||||
ret
|
||||
|
||||
start:
|
||||
ldb length, rg0
|
||||
lwi string, rg1
|
||||
lwi display, rg2
|
||||
|
||||
loop:
|
||||
// read from string and write to display
|
||||
ldb rg1, rg3, rg4
|
||||
stb rg3, rg1, rg4
|
||||
|
||||
// increment the offset & decrement the loop counter
|
||||
inc rg4
|
||||
dec rg0
|
||||
|
||||
// if loop counter <= 0 return.
|
||||
cmp rg0, zero,
|
||||
jgt loop
|
||||
ret
|
||||
|
||||
Reference in New Issue
Block a user