#ifndef ADDRESS_SPACE_H #define ADDRESS_SPACE_H #include #include struct AddressSpace_s { // A pointer to a ROM array. The array can vary in length. uint8_t *rom; // The size of ROM. uint32_t romSize; // TODO look into making it const // Is ROM read only bool romLocked; // A pointer to a RAM array. The array can vary in length. uint8_t *ram; // The size of RAM. uint32_t ramSize; }; typedef struct AddressSpace_s AddressSpace; AddressSpace *create_address_space(const uint32_t romSize, const uint32_t ramSize); int read_address_space(const AddressSpace *addressSpace, const uint32_t address, const int n, void *dest); int write_address_space(const AddressSpace *addressSpace, const uint32_t address, const int n, void *src); #endif