mirror of
https://github.com/WiIIiam278/breaking-bad-ds.git
synced 2025-06-19 01:05:33 -04:00

* Fix wrong line endings * Fixup launch tasks * Fixup nflib lib dir * Fixup debugger, improve dialogue save tracking * Fixup typo * Improve stability of game end logic * Dialogue text fixes * Fix SFX bug on Hank's mineral screen * Bump to 1.0.6 * Add SFX to cracking minigame
11 lines
165 B
C
11 lines
165 B
C
#pragma once
|
|
|
|
#include <malloc.h>
|
|
#include <unistd.h>
|
|
#include <nds.h>
|
|
|
|
u8* getHeapStart();
|
|
u8* getHeapEnd();
|
|
u8* getHeapLimit();
|
|
int getMemUsed();
|
|
int getMemFree(); |