1
0
mirror of https://github.com/rkujawa/rk65c02.git synced 2024-12-13 01:29:57 +00:00

Gotta generate header for emulation functions from CSV.

This commit is contained in:
Radosław Kujawa 2017-01-21 12:08:00 +01:00
parent 5ca671aecb
commit 0d5916eb7d

View File

@ -1,15 +0,0 @@
#ifndef _EMULATION_H_
#define _EMULATION_H_
#include "rk65c02.h"
#include "instruction.h"
void emul_and(rk65c02emu_t *, instruction_t *);
void emul_lda(rk65c02emu_t *, instruction_t *);
void emul_nop(rk65c02emu_t *, instruction_t *);
void emul_pha(rk65c02emu_t *, instruction_t *);
void emul_pla(rk65c02emu_t *, instruction_t *);
void emul_stp(rk65c02emu_t *, instruction_t *);
#endif /* _EMULATION_H_*/