mirror of
https://github.com/openhwgroup/cva5.git
synced 2025-04-22 13:07:33 -04:00
first patch fixing some comments
This commit is contained in:
parent
867ed896a2
commit
96faf76b0f
4 changed files with 4 additions and 11 deletions
|
@ -83,7 +83,7 @@ module axi_adapter
|
|||
assign axi.arlen = {3'b0, request_rlen};
|
||||
assign axi.arsize = 3'b010; //4 bytes
|
||||
assign axi.arburst = 2'b01; //Incrementing
|
||||
assign axi.arcache = 4'b0011; //Bufferable and cacheable memory
|
||||
assign axi.arcache = 4'b0011; //Bufferable and non-cacheable memory
|
||||
assign axi.arlock = 0; //Not locked
|
||||
|
||||
//R
|
||||
|
@ -114,7 +114,7 @@ module axi_adapter
|
|||
assign axi.awlen = '0;
|
||||
assign axi.awsize = 3'b010; //4 bytes
|
||||
assign axi.awburst = 2'b01; //Incrementing
|
||||
assign axi.awcache = 4'b0011; //Bufferable and cacheable memory
|
||||
assign axi.awcache = 4'b0011; //Bufferable and non-cacheable memory
|
||||
assign axi.awlock = 0; //Not locked
|
||||
|
||||
//W
|
||||
|
|
|
@ -695,13 +695,6 @@ module cva5
|
|||
|
||||
////////////////////////////////////////////////////
|
||||
//Assertions
|
||||
//Ensure that reset is held for at least 32 cycles to clear shift regs
|
||||
// always_ff @ (posedge clk) begin
|
||||
// assert property(@(posedge clk) $rose (rst) |=> rst[*32]) else $error("Reset not held for long enough!");
|
||||
// end
|
||||
|
||||
////////////////////////////////////////////////////
|
||||
//Assertions
|
||||
|
||||
|
||||
endmodule
|
||||
|
|
|
@ -53,7 +53,7 @@ module cva5_top
|
|||
output [31:0] m_axi_wdata,
|
||||
output [3:0] m_axi_wstrb,
|
||||
|
||||
//write response
|
||||
//B
|
||||
output m_axi_bready,
|
||||
input m_axi_bvalid,
|
||||
input [1:0] m_axi_bresp
|
||||
|
|
|
@ -56,7 +56,7 @@ module cva5_wrapper
|
|||
output logic [31:0] m_axi_wdata,
|
||||
output logic [3:0] m_axi_wstrb,
|
||||
|
||||
//write response
|
||||
//B
|
||||
output logic m_axi_bready,
|
||||
input logic m_axi_bvalid,
|
||||
input logic [1:0] m_axi_bresp
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue