| 3 | use crate::{config, fuzzware}; |
| 4 | |
| 5 | pub struct Model { |
| 6 | pub pc: u32, |
| 7 | pub addr: u32, |
| 8 | pub kind: ModelKind, |
| 9 | } |
| 10 | |
| 11 | impl Model { |
| 12 | fn matches_context(&self, pc: u64, mem_addr: u64) -> bool { |
nothing calls this directly
no outgoing calls
no test coverage detected