Skip to content
Snippets Groups Projects
Commit 950db1b6 authored by dam1n19's avatar dam1n19
Browse files

Changed ROMTABLE Value calculation method to improve lint

parent d8d9c80f
No related branches found
No related tags found
No related merge requests found
...@@ -170,7 +170,11 @@ module slcorem0_integration ...@@ -170,7 +170,11 @@ module slcorem0_integration
input wire SE, input wire SE,
input wire RSTBYPASS input wire RSTBYPASS
); );
// ------------------------------------------------------------
// ROM Table Value Calculation
// ------------------------------------------------------------
wire [31:0] ROMTABLE_VAL;
assign ROMTABLE_VAL = {ROMTABLE_BASE[31:2],2'd3};
// ------------------------------------------------------------ // ------------------------------------------------------------
// Configurability // Configurability
// ------------------------------------------------------------ // ------------------------------------------------------------
...@@ -379,7 +383,7 @@ module slcorem0_integration ...@@ -379,7 +383,7 @@ module slcorem0_integration
.SLVRDATA (slv_rdata_dap[31:0]), .SLVRDATA (slv_rdata_dap[31:0]),
.SLVREADY (slv_ready_dap), .SLVREADY (slv_ready_dap),
.SLVRESP (slv_resp_dap), .SLVRESP (slv_resp_dap),
.BASEADDR (ROMTABLE_BASE + 32'h00000003), .BASEADDR (ROMTABLE_VAL),
.ECOREVNUM (ECOREVNUM[27:20]), .ECOREVNUM (ECOREVNUM[27:20]),
.SE (SE) .SE (SE)
); );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment