Fixed some more bugs, added #if/#else/#endif and more opcodes, and .DATA stat

This commit is contained in:
David Anderson
2004-08-09 05:23:32 +00:00
parent 1dc16b835e
commit b14708d6f2
9 changed files with 215 additions and 51 deletions

View File

@ -82,7 +82,9 @@ public:
int FindArguments(std::string &text, std::vector<std::string*> &List, int &end, bool simple = false);
void Clear();
int CipCount();
private:
int CurCip() { return lastCip; }
bool SetDebug();
public: //private
void ProcessDirective(std::string &text);
void Init();
void InitOpcodes();
@ -107,6 +109,7 @@ private:
int lastCip;
int cellsize;
int stacksize;
bool debug;
};
#endif //_INCLUDE_AMXCOMPILER_H