mirror of
https://github.com/libretro/Mu.git
synced 2026-05-06 20:34:20 +00:00
The 20 pixel at a time y limit is because Palm OS seems to not allow allocating >64k at a time. Also removed unsafe mode, whenever a test needs to do something unsafe it can just call turnOffInterrupts()
19 lines
396 B
C
19 lines
396 B
C
#ifndef TOOLS_HEADER
|
|
#define TOOLS_HEADER
|
|
|
|
#include <PalmOS.h>
|
|
|
|
#include "testSuite.h"
|
|
|
|
Err makeFile(uint8_t* data, uint32_t size, char* fileName);
|
|
uint16_t ads7846GetValue(uint8_t channel, Boolean referenceMode, Boolean mode8Bit);
|
|
var hexRamBrowser();
|
|
var getTrapAddress();
|
|
var manualLssa();
|
|
var dumpBootloaderToFile();
|
|
var listRomInfo();
|
|
var listChipSelects();
|
|
var getTouchscreenLut();
|
|
|
|
#endif
|