6502-sim/instruction.h
2023-06-15 17:08:20 +00:00

9 lines
136 B
C

#pragma once
typedef struct instruction {
int opcode;
int mode;
} instruction_t;
extern const struct instruction decode_ins[256];