This commit is contained in:
2025-04-14 00:28:12 -07:00
parent ee8e4d37ff
commit 70d35cf0e3
15 changed files with 236 additions and 4 deletions

View File

@@ -0,0 +1,11 @@
#pragma once
#include <ehs/Str.h>
#include "Instruction.h"
class Keyword
{
private:
ehs::Str_8 identifier;
Instruction instruction;
};