mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-12-01 16:35:04 +00:00
9 lines
408 B
C
9 lines
408 B
C
#define Z8k_PAGE_SIZE (1<<PAGE_POWER)
|
|
|
|
int sim_read_byte PARAMS((sim_state_type *, sim_phys_addr_type));
|
|
unsigned int sim_read_short PARAMS((sim_state_type *, sim_phys_addr_type));
|
|
void sim_write_long PARAMS((sim_state_type *, sim_phys_addr_type,
|
|
int));
|
|
void sim_write_short PARAMS((sim_state_type *, sim_phys_addr_type, int));
|
|
void sim_write_byte PARAMS((sim_state_type *, sim_phys_addr_type, int));
|