PZ80emu  0.1
bus.h
Go to the documentation of this file.
1 
6 #ifndef __PZ80EMU_BUS__
7 #define __PZ80EMU_BUS__
8 
9 #include <stdbool.h>
10 #include <stdint.h>
11 
15 struct bus {
16  bool busreq;
17  bool interrupt;
18  bool nmi;
19  uint8_t data;
20  uint16_t address;
21 };
22 
23 #endif
bus::nmi
bool nmi
Definition: bus.h:18
bus::busreq
bool busreq
Definition: bus.h:16
bus::interrupt
bool interrupt
Definition: bus.h:17
bus
z80 bus class
Definition: bus.h:15
bus::data
uint8_t data
Definition: bus.h:19
bus::address
uint16_t address
Definition: bus.h:20