use crate::syscalls::{Syscall, SyscallRegistryEntry, caps}; pub(crate) const ENTRIES: &[SyscallRegistryEntry] = &[ SyscallRegistryEntry::builder(Syscall::SystemHasCart, "system", "has_cart") .rets(1) .caps(caps::SYSTEM), SyscallRegistryEntry::builder(Syscall::SystemRunCart, "system", "run_cart") .caps(caps::SYSTEM) .non_deterministic() .cost(50), ];