holy shit thats a lot of changed to asmrigs

This commit is contained in:
2026-01-17 23:45:36 +02:00
parent ee7735b610
commit fe1273e539
21 changed files with 645 additions and 197 deletions

View File

@@ -4,24 +4,17 @@
#include "tier2/tokenizer.h"
#include "tier3/lexer.h"
#define B_LEXEL_INTERFACE_NAME "BLexer001"
enum EBWordType
{
BWORDTYPE_CONST_WORD,
BWORDTYPE_FUNCTION,
BWORDTYPE_FUNCTION_ARGS,
BWORDTYPE_FUNCTION_ARG,
BWORDTYPE_FUNCTION_SCOPE,
BWORDTYPE_RETURN,
};
abstract_class IBLexerWord: public ILexerWord
abstract_class IBGenerator
{
public:
virtual void AddExternSymbol( const char *szName ) = 0;
virtual void DefineFunction( const char *szName ) = 0;
virtual void Load( uint8_t uRegister, int iValue ) = 0;
virtual void Return() = 0;
virtual CUtlString GetAssembly() = 0;
};
#define B_GENERATOR_INTERFACE_VERSION "BGenerator001"
#endif