This commit is contained in:
bQUARKz 2026-01-15 15:42:03 +00:00
parent aef5b89cdb
commit 4a1f51fe84
Signed by: bquarkz
SSH Key Fingerprint: SHA256:Z7dgqoglWwoK6j6u4QC87OveEq74WOhFN+gitsxtkf8

View File

@ -2,7 +2,7 @@ use crate::vm::{Value, VirtualMachine};
use crate::Machine;
pub trait NativeInterface {
fn syscall(&mut self, id: u32, vm: &mut crate::vm::VirtualMachine) -> Result<u64, String>;
fn syscall(&mut self, id: u32, vm: &mut VirtualMachine) -> Result<u64, String>;
}
impl NativeInterface for Machine {