mirror of
https://github.com/sanni/cartreader.git
synced 2024-11-11 07:25:07 +01:00
26 lines
575 B
C++
26 lines
575 B
C++
//******************************************
|
|
// 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
|
|
//******************************************
|