Scope module finished. Types module included &done

This commit is contained in:
2021-05-03 17:07:31 +02:00
parent 6923bec289
commit d20663ac7e
5 changed files with 166 additions and 34 deletions

8
variables.h Normal file
View File

@@ -0,0 +1,8 @@
#pragma once
struct t_variable {
std::string name;
int type;
int length;
int address;
};