diff options
| author | Rose Hogenson <rhogenson@posteo.net> | 2022-08-01 18:49:14 -0700 |
|---|---|---|
| committer | Rose Hogenson <rhogenson@posteo.net> | 2022-08-01 18:49:14 -0700 |
| commit | 99ce19a8053a93457885f32ec54c1c5b7c1961c1 (patch) | |
| tree | fdd369e014e343b58ebfa6703803262dbe89f90f /bytecode/src/bytecode.rs | |
| parent | a5fff9464817275f658e49789d4f5f397bfcf40f (diff) | |
| download | chromatopelma-99ce19a8053a93457885f32ec54c1c5b7c1961c1.tar.zst | |
Rename the compiler in bytecode.rs.
Diffstat (limited to 'bytecode/src/bytecode.rs')
| -rw-r--r-- | bytecode/src/bytecode.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bytecode/src/bytecode.rs b/bytecode/src/bytecode.rs index 6ba23cf..bde3721 100644 --- a/bytecode/src/bytecode.rs +++ b/bytecode/src/bytecode.rs @@ -1,8 +1,8 @@ use crate::data::Value; use crate::heap::Heap; -// The cute scheme virtual machine is a register based VM. -// There are 256 registers, also called locals. +// The Chromatopelma virtual machine is a register based VM. There are +// 256 registers, also called locals. #[derive(Debug, Eq, PartialEq, Clone, Copy)] pub struct Local(pub u8); |
