luaur-vm 0.1.0

The Luau register virtual machine and standard library (Rust).
Documentation
1
2
3
4
5
6
7
use crate::type_aliases::instruction::Instruction;

#[allow(non_snake_case)]
#[inline(always)]
pub unsafe fn VM_PATCH_AUX_SLOT(pc: *const Instruction, k: u32, slot: i32) {
    *(pc as *mut Instruction) = k | ((slot as u32) << 16);
}