AluVM / rust-aluvm

Rust implementation of AluVM (RISC functional machine)
https://docs.rs/aluvm
Apache License 2.0
59 stars 22 forks source link

fix insert, del instr #119

Closed cymqqqq closed 3 months ago

cymqqqq commented 3 months ago

Description: The original insert instruction, BytesOp::Ins(_, _, _, _) => INSTR_DEL, I think it should be BytesOp::Ins(_, _, _, _) => INSTR_INS. Ibid, for the del instruction, BytesOp::Del(_, _, _, _, _, _, _, _, _) => INSTR_INS, I think it should be BytesOp::Del(_, _, _, _, _, _, _, _, _) => INSTR_DEL.