17 lines
201 B
Plaintext
17 lines
201 B
Plaintext
module alloc;
|
|
|
|
u64 alloc(u64 size) {
|
|
u64 ptr = 0x0u64;
|
|
raw(i32, ptr) = 0x03u32;
|
|
i32 sus = raw(i32, ptr);
|
|
return 0u64;
|
|
}
|
|
|
|
void free(u64 address) {
|
|
|
|
}
|
|
|
|
u64 growMemory(u64 numPages) {
|
|
return 0u64;
|
|
}
|