PZ80emu
0.1
|
#include "../config.h"
#include <err.h>
#include "add.h"
#include "bcd.h"
#include "bit.h"
#include "boolean.h"
#include "complement.h"
#include "exchange.h"
#include "interpreter.h"
#include "interrupt.h"
#include "io.h"
#include "jump.h"
#include "load.h"
#include "rotate.h"
#include "stack.h"
#include "sub.h"
#include "utils.h"
Functions | |
static void | __bits_instruction (struct z80 *cpu, uint8_t *memory) |
parses an opcode from the BITS instruction set More... | |
static void | __ix_instruction (struct z80 *cpu, uint8_t *memory) |
parses an opcode from the IX instruction set More... | |
static void | __iy_instruction (struct z80 *cpu, uint8_t *memory) |
parses an opcode from the IY instruction set More... | |
static void | __extended_instruction (struct z80 *cpu, uint8_t *memory) |
parses an opcode from the extended instruction set More... | |
void | _instruction (struct z80 *cpu, uint8_t *memory) |
parses an opcode from the main instruction set More... | |
|
static |
parses an opcode from the BITS instruction set
cpu | z80 CPU objects |
memory | pointer to allocated memory |
|
static |
parses an opcode from the extended instruction set
cpu | z80 CPU objects |
memory | pointer to allocated memory |
|
static |
parses an opcode from the IX instruction set
cpu | z80 CPU objects |
memory | pointer to allocated memory |
|
static |
parses an opcode from the IY instruction set
cpu | z80 CPU objects |
memory | pointer to allocated memory |