Add ld{32,16,8},sw{32,16,8},clz{,32,16,8},clo{,32,16,8},rng,rev,rbit; rename swap->xch

This commit is contained in:
2020-10-11 22:01:12 +02:00
parent 4062ff4d09
commit c953e39b34
11 changed files with 619 additions and 31 deletions
+9
View File
@@ -0,0 +1,9 @@
(
; Print 2000 random ascii characters
(ld r0 2000)
(:n)
(rng @cout 32 126)
(dec r0)
(j.nz :n)
(ld @cout '\n')
)