Called with every newly generated input.
(ql: Qiling, input_bytes: bytes, persistent_round: int)
| 30 | ql.fast_mode = True |
| 31 | |
| 32 | def place_input_callback(ql: Qiling, input_bytes: bytes, persistent_round: int) -> Optional[bool]: |
| 33 | """Called with every newly generated input.""" |
| 34 | |
| 35 | ql.hw.usart3.send(input_bytes) |
| 36 | |
| 37 | return True |
| 38 | |
| 39 | def fuzzing_callback(ql: Qiling): |
| 40 | ql.run(end=0x80006d9) |
no test coverage detected