PZ80emu  0.1
Functions
boolean.h File Reference
#include "z80.h"
Include dependency graph for boolean.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Functions

__BEGIN_DECLS void _and (uint8_t *, struct z80 *)
 
void _xor (uint8_t *, struct z80 *)
 
void _or (uint8_t *, struct z80 *)
 

Detailed Description

Author
Peter H. Ezetta

Function Documentation

◆ _and()

__BEGIN_DECLS void _and ( uint8_t *  reg,
struct z80 cpu 
)

perform boolean AND operation

Parameters
regregister to operate on
cpuz80 cpu object

◆ _or()

void _or ( uint8_t *  reg,
struct z80 cpu 
)

perform boolean OR operation

Parameters
regregister to operate on
cpuz80 cpu object

◆ _xor()

void _xor ( uint8_t *  reg,
struct z80 cpu 
)

perform boolean XOR operation

Parameters
regregister to operate on
cpuz80 cpu object