1
0
mirror of https://github.com/rkujawa/rk65c02.git synced 2024-12-13 01:29:57 +00:00
rk65c02/src/65c02isa.h
Radosław Kujawa 23802b176f Instruction set definition is now private to 65c02isa.c, has API.
Minor refactoring while here, splitting stuff.
2017-01-17 14:29:20 +01:00

10 lines
126 B
C

#ifndef _65C02ISA_H_
#define _65C02ISA_H_
#include <stdint.h>
instrdef_t instrdef_get(uint8_t);
#endif /* _65C02ISA_H_ */