Mercurial > lcfOS
view kernel/memory.c3 @ 336:d1ecc493384e
Added spiffy armtoken class for bit fiddeling. Added cool test that checks for build repeatability
author | Windel Bouwman |
---|---|
date | Wed, 19 Feb 2014 22:32:15 +0100 |
parents | 6753763d3bec |
children |
line wrap: on
line source
module memory; import process; var int ptr; function u8* Alloc(int size) { ptr = ptr + size; return cast<u8*>(ptr); }