move VER_STR into flash

This commit is contained in:
Mirko Scholz
2020-09-04 22:23:35 +02:00
parent 9464360014
commit fb76fac249
7 changed files with 18 additions and 11 deletions

View File

@ -139,7 +139,7 @@ static void latch_on(void)
__xdata char EntryBuf[MAX_CHARS_PER_LINE + 1];
__xdata uint8_t ExpBuf[2];
__xdata const char VER_STR[32+1] = "STC RPN Calculator v1.09";
__code const char VER_STR[32+1] = "STC RPN Calculator v1.09";
enum {
@ -230,7 +230,7 @@ int main()
ExpBuf[0] = 0;
ExpBuf[1] = 0;
LCD_OutString_Initial(VER_STR, 32);
LCD_OutString_Initial(VER_STR);
#ifdef DESKTOP
LcdAvailable.release();
#endif