]> cloudbase.mooo.com Git - z180-stamp.git/blame_incremental - include/z80-if.h
User Timer1 as Z180 Clock
[z180-stamp.git] / include / z80-if.h
... / ...
CommitLineData
1
2#define ZST_ACQUIRED 0x01
3#define ZST_RUNNING 0x02
4
5typedef enum {
6 RESET = 0x00,
7 RESET_AQRD = ZST_ACQUIRED,
8 RUNNING = ZST_RUNNING,
9 RUNNING_AQRD = ZST_RUNNING | ZST_ACQUIRED,
10} zstate_t;
11
12typedef enum {
13 Reset,
14 Request,
15 Release,
16 Run,
17 Restart,
18 M_Cycle
19} bus_cmd_t;
20
21typedef enum {LOW, HIGH} level_t;
22
23zstate_t z80_bus_state(void);
24zstate_t z80_bus_cmd(bus_cmd_t cmd);
25void z80_setup_bus(void);
26int z80_stat_reset(void);
27//void z80_busreq(level_t level);
28int z80_stat_halt(void);
29
30void z80_write(uint32_t addr, uint8_t data);
31uint8_t z80_read(uint32_t addr);
32void z80_memset(uint32_t addr, uint8_t data, uint32_t length);
33void z80_write_block(const FLASH uint8_t *src, uint32_t dest, uint32_t length);
34
35
36typedef enum fifo_t {fifo_in, fifo_out, NUM_FIFOS} fifo_t;
37
38void z80_memfifo_init(const fifo_t f, uint32_t adr);
39int z80_memfifo_is_empty(const fifo_t f);
40int z80_memfifo_is_full(const fifo_t f);
41uint8_t z80_memfifo_getc(const fifo_t f);
42void z80_memfifo_putc(fifo_t f, uint8_t val);
43
44void z80_setup_msg_fifo(void);
45void z80_init_msg_fifo(uint32_t addr);
46int z80_msg_fifo_getc(void);