Implemented number output
This commit is contained in:
parent
e4f041be41
commit
8b1af4bea7
12 changed files with 185 additions and 46 deletions
22
lib/io/io.q
Normal file
22
lib/io/io.q
Normal file
|
@ -0,0 +1,22 @@
|
|||
import mem
|
||||
import sys
|
||||
|
||||
printNum(x) {
|
||||
length := 20
|
||||
buffer := mem.alloc(length)
|
||||
end := buffer + length
|
||||
tmp := end
|
||||
digit := 0
|
||||
|
||||
loop {
|
||||
x, digit = x / 10
|
||||
tmp -= 1
|
||||
tmp[0] = '0' + digit
|
||||
|
||||
if x == 0 {
|
||||
sys.write(1, tmp, end - tmp)
|
||||
mem.free(buffer, length)
|
||||
return
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue