| 28 | pub use unicorn_api::{IRQ_NUMBER_ADDR, TIMER_CHOICE_ADDR}; |
| 29 | |
| 30 | pub struct CortexmTarget<T> { |
| 31 | pub mmio_handler: Option<IoHandler>, |
| 32 | pub ctx: Option<UnsafeCell<Box<Context>>>, |
| 33 | fuzzware_exit: fuzzware::uc_err::Type, |
| 34 | mmio_type: std::marker::PhantomData<T>, |
| 35 | } |
| 36 | |
| 37 | impl<T> CortexmTarget<T> { |
| 38 | pub fn new() -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected