* lay base for 3D engine

* add failure reporting to Init functions, and DeInit functions
* GPU-related notes
* readme update
This commit is contained in:
StapleButter
2017-02-07 22:23:46 +01:00
parent 86cdf28323
commit 0562410de2
17 changed files with 274 additions and 40 deletions

View File

@ -44,7 +44,12 @@ u8 ClockAdjust;
u8 FreeReg;
void Init()
bool Init()
{
return true;
}
void DeInit()
{
}