Simplified standard library
This commit is contained in:
parent
b8e37fafae
commit
b7685fd7ec
25 changed files with 232 additions and 231 deletions
|
@ -1,14 +1,5 @@
|
|||
import sys
|
||||
|
||||
const page {
|
||||
readwrite 0x0004
|
||||
}
|
||||
|
||||
const mem {
|
||||
commit 0x1000
|
||||
reserve 0x2000
|
||||
}
|
||||
|
||||
alloc(length int) -> []int8 {
|
||||
x := sys.mmap(0, length+8, page.readwrite, mem.commit|mem.reserve)
|
||||
|
||||
|
@ -18,4 +9,13 @@ alloc(length int) -> []int8 {
|
|||
|
||||
store(x, 8, length)
|
||||
return x + 8
|
||||
}
|
||||
|
||||
const page {
|
||||
readwrite 0x0004
|
||||
}
|
||||
|
||||
const mem {
|
||||
commit 0x1000
|
||||
reserve 0x2000
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue