| 11 | |
| 12 | #[derive(Clone)] |
| 13 | pub struct IntCoder { |
| 14 | ram: Vec<i64>, |
| 15 | input: VecDeque<i64>, |
| 16 | rel_base: i64, |
| 17 | pc: i64, |
| 18 | } |
| 19 | |
| 20 | impl IntCoder { |
| 21 | pub fn new(program: &[i64]) -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected