Map some ROMs directly to Musashi as well?

This commit is contained in:
beeanyew
2020-12-31 14:30:28 +01:00
parent 2eb8474c92
commit c86423760e

View File

@@ -231,6 +231,8 @@ void add_mapping(struct emulator_config *cfg, unsigned int type, unsigned int ad
}
printf("[MAP %d] Added %s mapping for range %.8lX-%.8lX ID: %s\n", index, map_type_names[type], cfg->map_offset[index], cfg->map_offset[index] + cfg->map_size[index] - 1, cfg->map_id[index] ? cfg->map_id[index] : "None");
if (cfg->map_size[index] == cfg->rom_size[index])
m68k_add_rom_range(cfg->map_offset[index], cfg->map_high[index], cfg->map_data[index]);
return;