INL-retro-progdump/firmware/source/gameboy.h

14 lines
299 B
C

#ifndef _gameboy_h
#define _gameboy_h
#include "pinport.h"
#include "shared_dictionaries.h"
#include "shared_errors.h"
uint8_t gameboy_call( uint8_t opcode, uint8_t miscdata, uint16_t operand, uint8_t *rdata );
uint8_t dmg_rd( uint16_t addr );
void dmg_wr( uint16_t addr, uint8_t data );
#endif