luaur-code-gen 0.1.0

Native (A64/X64) code generation for Luau (Rust).
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use crate::records::assembly_builder_a_64::AssemblyBuilderA64;

impl AssemblyBuilderA64 {
    pub fn place_0(&mut self, name: *const core::ffi::c_char, op: u32) {
        if self.log_text {
            self.log_c_char(name);
        }

        self.place(op);
        self.commit();
    }
}