mirror of
https://github.com/openhwgroup/cvw
synced 2025-02-11 06:05:49 +00:00
Renamed DCU to DMEM
This commit is contained in:
parent
84801213d6
commit
056b147b13
@ -1,12 +1,12 @@
|
||||
///////////////////////////////////////////
|
||||
// dcu.sv
|
||||
// dmem.sv
|
||||
//
|
||||
// Written: David_Harris@hmc.edu 9 January 2021
|
||||
// Modified:
|
||||
//
|
||||
// Purpose: Data cache unit
|
||||
// Purpose: Data memory
|
||||
// Top level of the memory-stage hart logic
|
||||
// Contains data cache, subword read/write datapath, interface to external bus
|
||||
// Contains data cache, DTLB, subword read/write datapath, interface to external bus
|
||||
//
|
||||
// A component of the Wally configurable RISC-V project.
|
||||
//
|
||||
@ -27,7 +27,7 @@
|
||||
|
||||
`include "wally-config.vh"
|
||||
|
||||
module dcu (
|
||||
module dmem (
|
||||
input logic [1:0] MemRWM,
|
||||
output logic [1:0] MemRWdcuoutM,
|
||||
output logic DataMisalignedM,
|
@ -93,7 +93,7 @@ module wallypipelinedhart (
|
||||
ifu ifu(.*); // instruction fetch unit: PC, branch prediction, instruction cache
|
||||
|
||||
ieu ieu(.*); // inteber execution unit: integer register file, datapath and controller
|
||||
dcu dcu(/*.Funct3M(InstrM[14:12]),*/ .*); // data cache unit
|
||||
dmem dmem(/*.Funct3M(InstrM[14:12]),*/ .*); // data cache unit
|
||||
|
||||
ahblite ebu( // *** make IRData InstrF
|
||||
.IPAdrF(PCF), .IReadF(1'b1), .IRData(), //.IReady(),
|
||||
|
Loading…
Reference in New Issue
Block a user