mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-24 14:49:42 -06:00
Add numeric label support to assembler
This commit is contained in:
@ -63,6 +63,8 @@ enum class Terminal
|
||||
Eq,
|
||||
So,
|
||||
Dot,
|
||||
NumLabFwd,
|
||||
NumLabBwd,
|
||||
};
|
||||
|
||||
enum class ParenType
|
||||
@ -111,6 +113,7 @@ public:
|
||||
virtual void OnCloseParen(ParenType type) {}
|
||||
virtual void OnError() {}
|
||||
virtual void OnLabelDecl(std::string_view name) {}
|
||||
virtual void OnNumericLabelDecl(std::string_view name, u32 parse_num) {}
|
||||
virtual void OnVarDecl(std::string_view name) {}
|
||||
|
||||
protected:
|
||||
|
Reference in New Issue
Block a user