|
123456789101112131415161718192021222324252627282930 |
- /* Copyright (C) 2014-2015 Ben Kurtovic <ben.kurtovic@gmail.com>
- Released under the terms of the MIT License. See LICENSE for details. */
-
- #pragma once
-
- #include <stdbool.h>
- #include <stddef.h>
- #include <stdint.h>
-
- #define MMU_NUM_SLOTS (3)
- #define MMU_NUM_ROM_BANKS (64)
- #define MMU_ROM_BANK_SIZE (16 * 1024)
- #define MMU_SYSTEM_RAM_SIZE (8 * 1024)
-
- /* Structs */
-
- typedef struct {
- uint8_t *system_ram;
- const uint8_t *map_slots[MMU_NUM_SLOTS];
- const uint8_t *rom_banks[MMU_NUM_ROM_BANKS];
- } MMU;
-
- /* Functions */
-
- void mmu_init(MMU*);
- void mmu_free(MMU*);
- void mmu_load_rom(MMU*, const uint8_t*, size_t);
- void mmu_power(MMU*);
- uint8_t mmu_read_byte(MMU*, uint16_t);
- bool mmu_write_byte(MMU*, uint16_t, uint8_t);
|