Files
VMBL/src/asm/instructions.h

19 lines
231 B
C
Raw Normal View History

2025-12-21 09:44:16 +11:00
#ifndef INSTRUCTIONS_H
#define INSTRUCTIONS_H
#define MAX_ARGS 3
typedef enum
{
ARG_TYPE_INT
} ArgType;
typedef struct
{
char *mnemonic,
uint8_t argCount,
ArgType args[MAX_ARGS]
} InstructionInfo;
#endif // !INSTRUCTIONS_H