1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! RISCV 5-stage pipeline CPU

use super::*;

const START_ADDR: u32 = 0x80000000;

/// Core that can execute RISC-V instructions
#[synthesize]
pub fn core(
    imem: impl FnOnce(Vr<MemReq>) -> Vr<MemRespWithAddr>,
    dmem: impl FnOnce(Vr<MemReq>) -> Vr<MemRespWithAddr>,
) {
    fetch::<START_ADDR>(imem).comb(decode).comb(exe).comb(move |i| mem(i, dmem)).comb(wb)
}