First commit, porting from PaCO

This commit is contained in:
2021-04-27 19:02:20 +02:00
commit f1f590735b
11 changed files with 1283 additions and 0 deletions

11
heap.h Normal file
View File

@@ -0,0 +1,11 @@
#pragma once
void heap_init();
const int heap_get_address();
void heap_reserve(const int size);
const int heap_get_size();
void heap_alloc();
const float heap_get_float(const int address);
const char* heap_get_string(const int address);
void heap_set_float(const int address, const float value);
void heap_set_string(const int address, const char* value);