use crate::syscalls::{Syscall, SyscallRegistryEntry, caps}; pub(crate) const ENTRIES: &[SyscallRegistryEntry] = &[ SyscallRegistryEntry::builder(Syscall::LogWrite, "log", "write") .args(2) .caps(caps::LOG) .non_deterministic() .cost(5), SyscallRegistryEntry::builder(Syscall::LogWriteTag, "log", "write_tag") .args(3) .caps(caps::LOG) .non_deterministic() .cost(5), ];