SRAM规格不够大

This commit is contained in:
RuigeLee
2024-06-28 10:27:32 +08:00
parent 5090294a12
commit f008df4074
2 changed files with 93 additions and 25 deletions

View File

@@ -335,3 +335,59 @@ class MirrorSRAMDP extends BlackBox with HasBlackBoxInline {
}
class MirrorSRAMSpi() extends BlackBox with HasBlackBoxInline {
class MirrorSRAMSpiIO extends Bundle{
val addrr = Input(UInt(4.W))
val addrw = Input(UInt(4.W))
val dataw = Input( UInt(248.W) )
val datar = Output( UInt(248.W) )
val enw = Input(Bool())
val enr = Input(Bool())
val clockr = Input(Bool())
val clockw = Input(Bool())
}
val io: MirrorSRAMSpiIO = IO(new MirrorSRAMSpiIO)
setInline("MirrorSRAMSpi.v",
"""
| module MirrorSRAMSpi(
| input [3:0] addrr,
| input [3:0] addrw,
|
| input [247:0] dataw,
| output [247:0] datar,
| input enw,
| input enr,
|
| input clockr,
| input clockw
| );
|
| reg [247:0] ram[0:15];
| reg [247:0] data_r_reg;
|
| always @(posedge clockw) begin
| if(enw) begin
| ram[addrw] <= #1 dataw;
| end
| end
|
|
| always @(posedge clockr) begin
| if(enr) begin
| data_r_reg <= #1 ram[addrr];
| end
| end
|
|
| assign datar = data_r_reg;
|
|
|endmodule
""".stripMargin)
}