PZ80emu  0.1
Functions
interpreter.c File Reference
#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"
Include dependency graph for interpreter.c:

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...
 

Function Documentation

◆ __bits_instruction()

static void __bits_instruction ( struct z80 cpu,
uint8_t *  memory 
)
static

parses an opcode from the BITS instruction set

Parameters
cpuz80 CPU objects
memorypointer to allocated memory

◆ __extended_instruction()

static void __extended_instruction ( struct z80 cpu,
uint8_t *  memory 
)
static

parses an opcode from the extended instruction set

Parameters
cpuz80 CPU objects
memorypointer to allocated memory

◆ __ix_instruction()

static void __ix_instruction ( struct z80 cpu,
uint8_t *  memory 
)
static

parses an opcode from the IX instruction set

Parameters
cpuz80 CPU objects
memorypointer to allocated memory
Here is the call graph for this function:

◆ __iy_instruction()

static void __iy_instruction ( struct z80 cpu,
uint8_t *  memory 
)
static

parses an opcode from the IY instruction set

Parameters
cpuz80 CPU objects
memorypointer to allocated memory
Here is the call graph for this function:

◆ _instruction()

void _instruction ( struct z80 cpu,
uint8_t *  memory 
)

parses an opcode from the main instruction set

Parameters
cpuz80 CPU objects
memorypointer to allocated memory
Here is the call graph for this function: