Mercurial > lcfOS
view kernel/src/memory.c3 @ 363:396e5cefba13
Removed debuginfo instruction
author | Windel Bouwman |
---|---|
date | Sun, 16 Mar 2014 11:28:47 +0100 |
parents | b4ac28efcdf4 |
children | 577ed7fb3fe4 |
line wrap: on
line source
module memory; import process; var int ptr; function u8* Alloc(int size) { ptr = ptr + size; return cast<u8*>(ptr); }