diff options
| author | Cody <cody@codyq.dev> | 2023-04-12 21:02:16 -0500 |
|---|---|---|
| committer | Cody <cody@codyq.dev> | 2023-04-12 21:02:16 -0500 |
| commit | a8b2a413a455fb06e0b10cf13d132c812f92bd4b (patch) | |
| tree | adfef0fb8e527a1ad5d4a4aeed79a4c6334126ad /crates/sloth_bytecode/src/lib.rs | |
| parent | 209328c5fa7d57805cb362e3a792232cb6e39ad0 (diff) | |
| download | sloth-a8b2a413a455fb06e0b10cf13d132c812f92bd4b.tar.gz | |
Function calling, returning, jumping and fibonacci programs
Diffstat (limited to 'crates/sloth_bytecode/src/lib.rs')
| -rw-r--r-- | crates/sloth_bytecode/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/sloth_bytecode/src/lib.rs b/crates/sloth_bytecode/src/lib.rs index 992c24f..2319330 100644 --- a/crates/sloth_bytecode/src/lib.rs +++ b/crates/sloth_bytecode/src/lib.rs @@ -16,7 +16,7 @@ pub enum Error { macro_rules! opcodes { ( $( $code:literal $name:ident $docs:literal ),* ) => { #[repr(u8)] - #[derive(Clone, Copy, Eq, PartialEq)] + #[derive(Debug, Clone, Copy, Eq, PartialEq)] pub enum Opcode { $( #[doc = $docs] |
