13 lines
167 B
C
13 lines
167 B
C
|
#pragma once
|
||
|
|
||
|
#include "vm.h"
|
||
|
|
||
|
struct mnemonic
|
||
|
{
|
||
|
const char *name;
|
||
|
instruction_t instr;
|
||
|
};
|
||
|
|
||
|
typedef struct mnemonic mnemonic_t;
|
||
|
|
||
|
extern const mnemonic_t mnemonics[];
|