Sets the program counter to `pc`.
(&mut self, pc: Address)
| 247 | |
| 248 | /// Sets the program counter to `pc`. |
| 249 | pub(super) fn set_pc(&mut self, pc: Address) { |
| 250 | self.pc = pc; |
| 251 | } |
| 252 | |
| 253 | /// Returns the current error handler configuration. |
| 254 | pub(super) fn error_handler(&self) -> ErrorHandler { |
no outgoing calls
no test coverage detected