mirror of
https://github.com/libretro/Mu.git
synced 2026-09-23 15:15:43 +00:00
20 lines
405 B
C
20 lines
405 B
C
#ifndef TOOLS_H
|
|
#define TOOLS_H
|
|
|
|
#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 listRamInfo();
|
|
var listChipSelects();
|
|
var getTouchscreenLut();
|
|
|
|
#endif
|