Mercurial > lcfOS
view kernel/memory.c3 @ 296:9417caea2eb3
Directorized some backend files
author | Windel Bouwman |
---|---|
date | Sun, 01 Dec 2013 13:36:58 +0100 |
parents | 6aa721e7b10b |
children | 6753763d3bec |
line wrap: on
line source
module memory; import process; var u8* ptr; function u8* Alloc(int size) { ptr = ptr + size; return ptr; }