12 lines
234 B
C
12 lines
234 B
C
|
#include <stdint.h>
|
||
|
|
||
|
struct AddressSpace_s {
|
||
|
uint8_t *rom;
|
||
|
uint32_t romSize;
|
||
|
uint8_t *ram;
|
||
|
uint32_t ramSize;
|
||
|
};
|
||
|
|
||
|
typedef struct AddressSpace_s AddressSpace;
|
||
|
|
||
|
AddressSpace create_address_space(int romSize, int ramSize);
|