Você não pode selecionar mais de 25 tópicos
Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
18 linhas
468 B
18 linhas
468 B
#library "ZMEMORY" |
|
#include "zcommon.acs" |
|
|
|
//Simple linked list implementation of malloc |
|
|
|
//Memory space |
|
global int 63:memory[]; |
|
|
|
//NULL "pointer" |
|
#libdefine nullptr 0 |
|
|
|
//Allocated size bytes in the memory space |
|
function int malloc (int size) {return 0;} |
|
|
|
//Frees an allocated block in the memory space. |
|
//There are no safeguards in this function to guess whether or not the free is |
|
// valid, so be careful. |
|
function int free (int p_ptr) {return 0;}
|
|
|