The CPU: owns a 5-stage pipeline and exposes a single tick interface.
| 22 | |
| 23 | /// The CPU: owns a 5-stage pipeline and exposes a single tick interface. |
| 24 | #[derive(Clone)] |
| 25 | pub struct Cpu { |
| 26 | pipeline: Pipeline, |
| 27 | } |
| 28 | |
| 29 | impl Cpu { |
nothing calls this directly
no outgoing calls
no test coverage detected