(&self, name: &str, byte: u8)
| 383 | } |
| 384 | |
| 385 | fn byte_instruction(&self, name: &str, byte: u8) { |
| 386 | let name = format!("OP_{name}"); |
| 387 | println!("{:-16} {:4}", name, byte); |
| 388 | } |
| 389 | |
| 390 | fn jump_instruction(&self, name: &str, sign: i8, offset: usize, jump: u16) { |
| 391 | let name = format!("OP_{name}"); |
no outgoing calls
no test coverage detected