mirror of
https://github.com/sanni/cartreader.git
synced 2024-11-13 08:25:05 +01:00
26 lines
575 B
Arduino
26 lines
575 B
Arduino
|
//******************************************
|
||
|
// GAMEBOY
|
||
|
//******************************************
|
||
|
|
||
|
/******************************************
|
||
|
Menu
|
||
|
*****************************************/
|
||
|
|
||
|
void gbMenu() {
|
||
|
println_Msg(F("WORK IN PROGRESS"));
|
||
|
println_Msg(F("Press Button..."));
|
||
|
display_Update();
|
||
|
wait();
|
||
|
asm volatile (" jmp 0");
|
||
|
}
|
||
|
|
||
|
/******************************************
|
||
|
Setup
|
||
|
*****************************************/
|
||
|
void setup_GB() {
|
||
|
}
|
||
|
|
||
|
//******************************************
|
||
|
// End of File
|
||
|
//******************************************
|