Skip to content

Commit

Permalink
Fix illegal Verilog assignment (#15)
Browse files Browse the repository at this point in the history
  • Loading branch information
lucabertaccini authored Sep 27, 2024
1 parent de4f932 commit e5aa6a0
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions docs/CHANGELOG-PULP.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a
In this sense, we interpret the "Public API" of a hardware module as its port/parameter list.
Versions of the IP in the same major relase are "pin-compatible" with each other. Minor relases are permitted to add new parameters as long as their default bindings ensure backwards compatibility.

## [pulp-v0.2.3] - 2024-09-27

### Fix
- Fix illegal Verilog `'0`

## [pulp-v0.2.2] - 2024-06-24

### Added
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -763,7 +763,7 @@ case(vfdsu_ex3_bfloat_expnt_rst[8:0])
9'h17a:begin qt_result_bfloat_denorm_for_round[10:0] = {total_qt_rt_58[56:46]}; //-93 -6
bfloat_denorm_lst_frac = 1'b0;
end//-1022 1
default: begin qt_result_bfloat_denorm_for_round[10:0] = '0;
default: begin qt_result_bfloat_denorm_for_round[10:0] = 11'b0;
bfloat_denorm_lst_frac = 1'b0;
end//-1022 1
endcase
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -817,7 +817,7 @@ index 6eece52..a419289 100644
+ 9'h17a:begin qt_result_bfloat_denorm_for_round[10:0] = {total_qt_rt_58[56:46]}; //-93 -6
+ bfloat_denorm_lst_frac = 1'b0;
+ end//-1022 1
+ default: begin qt_result_bfloat_denorm_for_round[10:0] = '0;
+ default: begin qt_result_bfloat_denorm_for_round[10:0] = 11'b0;
+ bfloat_denorm_lst_frac = 1'b0;
+ end//-1022 1
+endcase
Expand Down

0 comments on commit e5aa6a0

Please sign in to comment.