Cat instruction with limited implementation

This commit is contained in:
Andrew Morris
2023-05-30 11:22:50 +10:00
parent 98a7e8ea1f
commit 4164f44ece
7 changed files with 45 additions and 2 deletions

View File

@@ -54,6 +54,7 @@ pub enum InstructionByte {
ThisSubCall = 0x33,
Next = 0x34,
UnpackIterRes = 0x35,
Cat = 0x36,
}
impl InstructionByte {
@@ -115,6 +116,7 @@ impl InstructionByte {
0x33 => ThisSubCall,
0x34 => Next,
0x35 => UnpackIterRes,
0x36 => Cat,
_ => panic!("Unrecognized instruction: {}", byte),
};