compiler: CMake-ify

This commit is contained in:
Michael Fabian 'Xaymar' Dirks
2019-01-18 15:55:51 +01:00
parent 2dbd84c794
commit 0065ff4328
34 changed files with 158 additions and 60 deletions
+13
View File
@@ -0,0 +1,13 @@
#ifndef LABEL_H
#define LABEL_H
struct Label{
string name; //name of label
int def,ref; //pos of defn and goto/restore src
int data_sz; //size of data at this label.
Label( const string &n,int d,int r,int sz ):name(n),def(d),ref(r),data_sz(sz){}
};
#endif