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