#include <stdint.h>
#include "z80.h"
Go to the source code of this file.
|
__BEGIN_DECLS void | _out_mem_reg8 (uint8_t, struct z80 *, uint8_t *) |
| places the contents of an 8-bit register on the databus More...
|
|
void | _out_c_reg8 (uint8_t, struct z80 *, uint8_t *) |
|
void | _in_reg8_mem (uint8_t *, struct z80 *, uint8_t *) |
| reads value of data bus into an 8-bit register More...
|
|
◆ _in_reg8_mem()
void _in_reg8_mem |
( |
uint8_t * |
reg, |
|
|
struct z80 * |
cpu, |
|
|
uint8_t * |
memory |
|
) |
| |
reads value of data bus into an 8-bit register
- Parameters
-
reg | register to store input value to |
cpu | z80 CPU object |
memory | pointer to allocated memory |
◆ _out_mem_reg8()
__BEGIN_DECLS void _out_mem_reg8 |
( |
uint8_t |
reg, |
|
|
struct z80 * |
cpu, |
|
|
uint8_t * |
memory |
|
) |
| |
places the contents of an 8-bit register on the databus
- Parameters
-
reg | register to output |
cpu | z80 CPU object |
memory | pointer to allocated memory |