diff options
Diffstat (limited to 'lib/xixanta/src/opcodes.rs')
| -rw-r--r-- | lib/xixanta/src/opcodes.rs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/lib/xixanta/src/opcodes.rs b/lib/xixanta/src/opcodes.rs index 48e4fca..150813e 100644 --- a/lib/xixanta/src/opcodes.rs +++ b/lib/xixanta/src/opcodes.rs @@ -1670,6 +1670,16 @@ pub static CONTROL_FUNCTIONS: LazyLock<HashMap<String, Control>> = LazyLock::new let mut functions = HashMap::new(); functions.insert( + String::from(".version"), + Control { + control_type: ControlType::Version, + has_identifier: None, + required_args: Some((0, 0)), + touches_context: false, + only_string: false, + }, + ); + functions.insert( String::from(".hibyte"), Control { control_type: ControlType::Hibyte, |
