update multi booter

switch order of picomite and sd_boot to make more space for progs of multi booter

bin folder name changed to firmware

ui interface improvments
This commit is contained in:
cuu
2025-05-25 15:40:46 +08:00
parent 3009ce75ba
commit 5276f48b6d
11 changed files with 102 additions and 58 deletions

View File

@@ -150,6 +150,7 @@ int main(void) {
printf("max %d \n",max);
// Choose an app to launch
/*
int chosen;
if(!sd_card_inserted()){
printf("No sd card\n");
@@ -159,7 +160,8 @@ int main(void) {
chosen = max-1;
if(chosen <0 ) chosen = 0;
}
*/
int chosen = 0;
// Get start address of app
addr = PEEK32( info + ((chosen * 16)));
printf("Application at %08lX\n", addr);