Skip to content

Commit

Permalink
Bump Utility and init parameter string for palladium (#158)
Browse files Browse the repository at this point in the history
Co-authored-by: Cai Luoshan <[email protected]>
  • Loading branch information
cailuoshan and Cai Luoshan committed Dec 14, 2023
1 parent fe18821 commit faa6e38
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/main/resources/TLLogWriter.v
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ module TLLogWriter(
input clock,
input reset
);
parameter string prefix;
parameter string prefix = "undefined";

always @(posedge clock) begin
if(wen && !reset) begin
Expand Down
2 changes: 1 addition & 1 deletion src/main/scala/huancun/debug/DirectoryLogger.scala
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ class DirLogWriter(prefix: String)
| input clock,
| input reset
|);
| parameter string prefix;
| parameter string prefix = "undefined";
|
| always @(posedge clock) begin
| if(wen && !reset) begin
Expand Down

0 comments on commit faa6e38

Please sign in to comment.