9 lines
136 B
C
9 lines
136 B
C
#pragma once
|
|
|
|
typedef struct instruction {
|
|
int opcode;
|
|
int mode;
|
|
} instruction_t;
|
|
|
|
extern const struct instruction decode_ins[256];
|