MCUME/MCUME_teensy41/teensy800/teensy800.ino

42 wiersze
997 B
C++

extern "C" {
#include "iopins.h"
#include "emuapi.h"
}
#include "t4_dsp.h"
extern T4_DSP tft;
// ****************************************************
// the setup() method runs once, when the sketch starts
// ****************************************************
void setup() {
emu_init();
}
static void vbl(void) {
uint16_t bClick = emu_DebounceLocalKeys();
emu_Input(bClick);
}
// ****************************************************
// the loop() method runs continuously
// ****************************************************
void loop(void)
{
if (menuActive()) {
uint16_t bClick = emu_DebounceLocalKeys();
int action = handleMenu(bClick);
char * filename = menuSelection();
if (action == ACTION_RUN1) {
emu_start(10000,nullptr,FORCE_VGATIMERVSYNC);
emu_Init(filename);
}
delay(20);
}
else {
uint16_t bClick = emu_DebounceLocalKeys();
emu_Input(bClick);
emu_Step();
}
}