mirror of
https://github.com/olofk/serv.git
synced 2025-04-20 11:57:07 -04:00
Set align parameter to the value of compressed by default
This commit is contained in:
parent
04991380df
commit
9be55f5cad
2 changed files with 2 additions and 2 deletions
|
@ -7,7 +7,7 @@ module serv_top
|
|||
parameter RESET_PC = 32'd0,
|
||||
parameter [0:0] MDU = 1'b0,
|
||||
parameter [0:0] COMPRESSED=0,
|
||||
parameter [0:0] ALIGN = 0)
|
||||
parameter [0:0] ALIGN = COMPRESSED)
|
||||
(
|
||||
input wire clk,
|
||||
input wire i_rst,
|
||||
|
|
|
@ -11,7 +11,7 @@ module servant
|
|||
parameter sim = 0;
|
||||
parameter with_csr = 1;
|
||||
parameter [0:0] compress = 0;
|
||||
parameter [0:0] align = 0;
|
||||
parameter [0:0] align = compress;
|
||||
|
||||
wire timer_irq;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue