mirror of
https://github.com/Polprzewodnikowy/N64FlashcartMenu.git
synced 2024-12-26 02:01:50 +01:00
Merge remote-tracking branch 'upstream/main' into develop
This commit is contained in:
commit
1b112bfa11
@ -95,7 +95,7 @@ void boot (boot_params_t *params) {
|
|||||||
io32_t *reboot_dst = SP_MEM->IMEM;
|
io32_t *reboot_dst = SP_MEM->IMEM;
|
||||||
size_t reboot_instructions = (size_t) (&reboot_size) / sizeof(uint32_t);
|
size_t reboot_instructions = (size_t) (&reboot_size) / sizeof(uint32_t);
|
||||||
|
|
||||||
for (int i = 0; i < reboot_instructions; i++) {
|
for (unsigned int i = 0; i < reboot_instructions; i++) {
|
||||||
cpu_io_write(&reboot_dst[i], reboot_src[i]);
|
cpu_io_write(&reboot_dst[i], reboot_src[i]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -101,7 +101,7 @@ static flashcart_err_t d64_load_rom (char *rom_path, flashcart_progress_callback
|
|||||||
size_t sdram_size = MiB(64);
|
size_t sdram_size = MiB(64);
|
||||||
|
|
||||||
size_t chunk_size = KiB(128);
|
size_t chunk_size = KiB(128);
|
||||||
for (int offset = 0; offset < sdram_size; offset += chunk_size) {
|
for (unsigned int offset = 0; offset < sdram_size; offset += chunk_size) {
|
||||||
size_t block_size = MIN(sdram_size - offset, chunk_size);
|
size_t block_size = MIN(sdram_size - offset, chunk_size);
|
||||||
if (f_read(&fil, (void *) (ROM_ADDRESS + offset), block_size, &br) != FR_OK) {
|
if (f_read(&fil, (void *) (ROM_ADDRESS + offset), block_size, &br) != FR_OK) {
|
||||||
f_close(&fil);
|
f_close(&fil);
|
||||||
|
@ -232,7 +232,7 @@ static flashcart_err_t sc64_init (void) {
|
|||||||
{ CFG_ID_ROM_EXTENDED_ENABLE, false },
|
{ CFG_ID_ROM_EXTENDED_ENABLE, false },
|
||||||
};
|
};
|
||||||
|
|
||||||
for (int i = 0; i < sizeof(default_config) / sizeof(default_config[0]); i++) {
|
for (unsigned int i = 0; i < sizeof(default_config) / sizeof(default_config[0]); i++) {
|
||||||
if (sc64_ll_set_config(default_config[i].id, default_config[i].value) != SC64_OK) {
|
if (sc64_ll_set_config(default_config[i].id, default_config[i].value) != SC64_OK) {
|
||||||
return FLASHCART_ERR_INT;
|
return FLASHCART_ERR_INT;
|
||||||
}
|
}
|
||||||
@ -285,7 +285,7 @@ static flashcart_err_t sc64_load_rom (char *rom_path, flashcart_progress_callbac
|
|||||||
size_t extended_size = extended_enabled ? rom_size - MiB(64) : 0;
|
size_t extended_size = extended_enabled ? rom_size - MiB(64) : 0;
|
||||||
|
|
||||||
size_t chunk_size = KiB(128);
|
size_t chunk_size = KiB(128);
|
||||||
for (int offset = 0; offset < sdram_size; offset += chunk_size) {
|
for (unsigned int offset = 0; offset < sdram_size; offset += chunk_size) {
|
||||||
size_t block_size = MIN(sdram_size - offset, chunk_size);
|
size_t block_size = MIN(sdram_size - offset, chunk_size);
|
||||||
if (f_read(&fil, (void *) (ROM_ADDRESS + offset), block_size, &br) != FR_OK) {
|
if (f_read(&fil, (void *) (ROM_ADDRESS + offset), block_size, &br) != FR_OK) {
|
||||||
f_close(&fil);
|
f_close(&fil);
|
||||||
@ -447,7 +447,7 @@ static flashcart_err_t sc64_load_64dd_ipl (char *ipl_path, flashcart_progress_ca
|
|||||||
}
|
}
|
||||||
|
|
||||||
size_t chunk_size = KiB(128);
|
size_t chunk_size = KiB(128);
|
||||||
for (int offset = 0; offset < ipl_size; offset += chunk_size) {
|
for (unsigned int offset = 0; offset < ipl_size; offset += chunk_size) {
|
||||||
size_t block_size = MIN(ipl_size - offset, chunk_size);
|
size_t block_size = MIN(ipl_size - offset, chunk_size);
|
||||||
if (f_read(&fil, (void *) (IPL_ADDRESS + offset), block_size, &br) != FR_OK) {
|
if (f_read(&fil, (void *) (IPL_ADDRESS + offset), block_size, &br) != FR_OK) {
|
||||||
f_close(&fil);
|
f_close(&fil);
|
||||||
@ -501,7 +501,7 @@ static flashcart_err_t sc64_load_64dd_disk (char *disk_path, flashcart_disk_para
|
|||||||
{ CFG_ID_BUTTON_MODE, BUTTON_MODE_DD_DISK_SWAP },
|
{ CFG_ID_BUTTON_MODE, BUTTON_MODE_DD_DISK_SWAP },
|
||||||
};
|
};
|
||||||
|
|
||||||
for (int i = 0; i < sizeof(config) / sizeof(config[0]); i++) {
|
for (unsigned int i = 0; i < sizeof(config) / sizeof(config[0]); i++) {
|
||||||
if (sc64_ll_set_config(config[i].id, config[i].value) != SC64_OK) {
|
if (sc64_ll_set_config(config[i].id, config[i].value) != SC64_OK) {
|
||||||
return FLASHCART_ERR_INT;
|
return FLASHCART_ERR_INT;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user