|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152 |
- /* Copyright (C) 2014-2015 Ben Kurtovic <ben.kurtovic@gmail.com>
- Released under the terms of the MIT License. See LICENSE for details. */
-
- #include <stdlib.h>
- #include <string.h>
-
- #include "logging.h"
- #include "util.h"
- #include "z80.h"
-
- /*
- Initialize a MMU object. This must be called before using the MMU.
- */
- void mmu_init(MMU *mmu)
- {
- mmu->system_ram = cr_malloc(sizeof(uint8_t) * MMU_SYSTEM_RAM_SIZE);
-
- for (size_t slot = 0; slot < MMU_NUM_SLOTS; slot++)
- mmu->map_slots[slot] = NULL;
-
- for (size_t bank = 0; bank < MMU_NUM_ROM_BANKS; bank++)
- mmu->rom_banks[bank] = NULL;
- }
-
- /*
- Free memory previously allocated by the MMU.
- */
- void mmu_free(MMU *mmu)
- {
- free(mmu->system_ram);
- }
-
- /*
- Load a block of ROM into the MMU.
-
- size must be a multiple of MMU_ROM_BANK_SIZE (16 KB), the load will fail
- silently. It should also be a power of two, or problems might occur with
- ROM mirroring logic. It should not be larger than
- MMU_ROM_BANK_SIZE * MMU_NUM_ROM_BANKS, or the extra banks will be ignored.
-
- This function will still work if called while the system is running, but it
- will likely cause unexpected behavior.
- */
- void mmu_load_rom(MMU *mmu, const uint8_t *data, size_t size)
- {
- if (size % MMU_ROM_BANK_SIZE)
- return;
-
- size_t banks = size / MMU_ROM_BANK_SIZE, bank, mirror;
- if (banks > MMU_NUM_ROM_BANKS)
- banks = MMU_NUM_ROM_BANKS;
-
- for (bank = 0; bank < banks; bank++) {
- for (mirror = bank; mirror < MMU_NUM_ROM_BANKS; mirror += banks)
- mmu->rom_banks[mirror] = data + (bank * MMU_ROM_BANK_SIZE);
- }
-
- #ifdef DEBUG_MODE
- char temp_str[64];
- DEBUG("Dumping MMU bank table:")
- for (size_t group = 0; group < MMU_NUM_ROM_BANKS / 8; group++) {
- for (size_t elem = 0; elem < 8; elem++) {
- bank = 8 * group + elem;
- snprintf(temp_str + 6 * elem, 7, "%02zX=%02zX ", bank,
- (mmu->rom_banks[bank] - data) >> 14);
- }
- temp_str[47] = '\0';
- DEBUG("- %s", temp_str)
- }
- #endif
- }
-
- /*
- Map the given RAM slot to the given ROM bank.
- */
- static inline void map_slot(MMU *mmu, size_t slot, size_t bank)
- {
- DEBUG("MMU mapping memory slot %zu to bank 0x%02zX", slot, bank)
- mmu->map_slots[slot] = mmu->rom_banks[bank];
- }
-
- /*
- Power on the MMU, setting initial memory values.
-
- This must be called before memory is read from or written to. If no ROM has
- been loaded, those regions will be read as 0xFF and will not accept writes.
- */
- void mmu_power(MMU *mmu)
- {
- for (size_t slot = 0; slot < MMU_NUM_SLOTS; slot++)
- map_slot(mmu, slot, slot);
-
- memset(mmu->system_ram, 0xFF, MMU_SYSTEM_RAM_SIZE);
- }
-
- /*
- Read a byte from a memory bank, or return 0xFF if the bank is not mapped.
- */
- static inline uint8_t bank_byte_read(const uint8_t* bank, uint16_t addr)
- {
- return bank ? bank[addr] : 0xFF;
- }
-
- /*
- Read a byte of memory from the given address.
-
- Memory region information is based on:
- - http://www.smspower.org/Development/MemoryMap
- - http://www.smspower.org/Development/Mappers
- */
- uint8_t mmu_read_byte(MMU *mmu, uint16_t addr)
- {
- if (addr < 0x0400) // First kilobyte is unpaged, for interrupt handlers
- return bank_byte_read(mmu->rom_banks[0], addr);
- else if (addr < 0x4000) // Slot 0 (0x0400 - 0x3FFF)
- return bank_byte_read(mmu->map_slots[0], addr);
- else if (addr < 0x8000) // Slot 1 (0x4000 - 0x7FFF)
- return bank_byte_read(mmu->map_slots[1], addr - 0x4000);
- else if (addr < 0xC000) // Slot 2 (0x8000 - 0xBFFF)
- return bank_byte_read(mmu->map_slots[2], addr - 0x8000);
- else if (addr < 0xE000) // System RAM (0xC000 - 0xDFFF)
- return mmu->system_ram[addr - 0xC000];
- else // System RAM, mirrored (0xE000 - 0xFFFF)
- return mmu->system_ram[addr - 0xE000];
- }
-
- /*
- Write a byte of memory to the given address.
-
- Return true if the byte was written, and false if it wasn't. Writes will
- fail when attempting to write to read-only memory.
- */
- bool mmu_write_byte(MMU *mmu, uint16_t addr, uint8_t value)
- {
- if (addr < 0xC000) { // TODO: implement writes to on-cartridge RAM
- return false;
- } else if (addr < 0xE000) { // System RAM (0xC000 - 0xDFFF)
- mmu->system_ram[addr - 0xC000] = value;
- return true;
- } else { // System RAM, mirrored (0xE000 - 0xFFFF)
- if (addr == 0xFFFC) {
- // TODO: handle cartridge RAM mapping control
- } else if (addr == 0xFFFD)
- map_slot(mmu, 0, value & 0x3F);
- else if (addr == 0xFFFE)
- map_slot(mmu, 1, value & 0x3F);
- else if (addr == 0xFFFF)
- map_slot(mmu, 2, value & 0x3F);
- mmu->system_ram[addr - 0xE000] = value;
- return true;
- }
- }
|