diff --git a/Makefile.user b/Makefile.user index 7e84631..214b5f8 100644 --- a/Makefile.user +++ b/Makefile.user @@ -19,6 +19,8 @@ DLDFLAGS = -T $(DYNAMIC_LDS) -relax -L$(LIBDIR) BASE1_DEFAULT = 0xb000 BASE2_DEFAULT = 0xb210 +# Base addresses manually copied from $(DYNAMIC_LDS) +# (Values should be check as kernel changes but kept as backup if GET_BASE fails) BASE1 = 0xad30 BASE2 = 0xaf40 diff --git a/kernel/kmain.c b/kernel/kmain.c index 3ba08c6..95914c3 100644 --- a/kernel/kmain.c +++ b/kernel/kmain.c @@ -139,6 +139,8 @@ void kmain(void) program_init(); #endif + lcd_clear(); + dkey_multi = KEY_ONOFF; #if defined(CONF_DSOUND) && defined(CONF_ON_OFF_SOUND) show_on_off(on_text, on_sound);