luaur-code-gen 0.1.1

Native (A64/X64) code generation for Luau (Rust).
Documentation
1
2
3
4
5
#[inline]
pub unsafe fn writeu_8(target: *mut u8, value: u8) -> *mut u8 {
    *target = value;
    target.add(core::mem::size_of::<u8>())
}