// ESP32 Boot ROM built-in TinyBasic interpreter
// Start and type HELP to see the list of commands

typedef int func(void);
func* start_tb_console = (func*)0x4005a980;

void setup() {
  start_tb_console();
}

void loop() {
  // We'll never get here...
}