(ctx: *mut c_void)
| 391 | } |
| 392 | |
| 393 | pub unsafe extern "C" fn pop_stack(ctx: *mut c_void) { |
| 394 | let vm = unsafe { &mut *(*ctx.cast::<Context>()).vm }; |
| 395 | vm.env.as_mut_any().downcast_mut::<FuzzwareEnvironment>().unwrap().pop_stack(&mut vm.cpu); |
| 396 | } |
| 397 | |
| 398 | pub unsafe extern "C" fn notify_irq_enable_state(ctx: *mut c_void, irq: i32, is_enabled: bool) { |
| 399 | let vm = unsafe { &mut *(*ctx.cast::<Context>()).vm }; |
nothing calls this directly
no test coverage detected