mirror of
https://github.com/sanni/cartreader.git
synced 2024-11-30 16:34:14 +01:00
V1.0: Change versioning to the more common #.# format
This commit is contained in:
parent
bec6426901
commit
40d2361855
@ -2,8 +2,8 @@
|
||||
Cartridge Reader for Arduino Mega2560
|
||||
|
||||
Author: sanni
|
||||
Date: 04-21-2018
|
||||
Version: V33C
|
||||
Date: 05-05-2018
|
||||
Version: 1.0
|
||||
|
||||
SD lib: https://github.com/greiman/SdFat
|
||||
LCD lib: https://github.com/adafruit/Adafruit_SSD1306
|
||||
@ -35,7 +35,7 @@
|
||||
infinest - help with GB Memory cart
|
||||
|
||||
**********************************************************************************/
|
||||
char ver[5] = "V33C";
|
||||
char ver[5] = "1.0";
|
||||
|
||||
/******************************************
|
||||
Define Starting Point
|
||||
@ -351,7 +351,7 @@ void aboutScreen() {
|
||||
display.drawBitmap(0, 0, sig, 128, 64, 1);
|
||||
println_Msg(F("Cartridge Reader"));
|
||||
println_Msg(F("github.com/sanni"));
|
||||
print_Msg(F("2018 "));
|
||||
print_Msg(F("2018 Version "));
|
||||
println_Msg(ver);
|
||||
println_Msg(F(""));
|
||||
println_Msg(F(""));
|
||||
|
@ -1,5 +1,5 @@
|
||||
//******************************************
|
||||
// FLASHROM
|
||||
// FLASHROM MODULE
|
||||
//******************************************
|
||||
|
||||
/******************************************
|
||||
@ -52,8 +52,8 @@ void flashMenu() {
|
||||
// create menu with title and 3 options to choose from
|
||||
unsigned char flashSlot;
|
||||
// Copy menuOptions out of progmem
|
||||
convertPgm(menuOptionsFlash, 3);
|
||||
flashSlot = question_box("Select flashrom slot", menuOptions, 3, 0);
|
||||
convertPgm(menuOptionsFlash, 2);
|
||||
flashSlot = question_box("Select flashrom slot", menuOptions, 2, 0);
|
||||
|
||||
// wait for user choice to come back from the question box menu
|
||||
switch (flashSlot)
|
||||
|
@ -1,5 +1,5 @@
|
||||
//******************************************
|
||||
// GAME BOY
|
||||
// GAME BOY MODULE
|
||||
//******************************************
|
||||
|
||||
/******************************************
|
||||
|
@ -1,5 +1,5 @@
|
||||
//******************************************
|
||||
// GAME BOY ADVANCE
|
||||
// GAME BOY ADVANCE MODULE
|
||||
//******************************************
|
||||
|
||||
/******************************************
|
||||
|
@ -1,5 +1,5 @@
|
||||
//******************************************
|
||||
// SEGA MEGA DRIVE
|
||||
// SEGA MEGA DRIVE MODULE
|
||||
//******************************************
|
||||
|
||||
/******************************************
|
||||
|
@ -1,5 +1,5 @@
|
||||
//******************************************
|
||||
// NINTENDO 64
|
||||
// NINTENDO 64 MODULE
|
||||
//******************************************
|
||||
|
||||
/******************************************
|
||||
|
@ -1,5 +1,5 @@
|
||||
//******************************************
|
||||
// NINTENDO POWER Cartridges for SFC and GB
|
||||
// NINTENDO POWER MODULE
|
||||
// (GB Memory starts at around line 1460)
|
||||
//******************************************
|
||||
|
||||
|
@ -707,4 +707,3 @@ void pceMenu() {
|
||||
//******************************************
|
||||
// End of File
|
||||
//******************************************
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
//******************************************
|
||||
// SUPER NINTENDO
|
||||
// SUPER NINTENDO MODULE
|
||||
//******************************************
|
||||
|
||||
/******************************************
|
||||
|
Loading…
Reference in New Issue
Block a user