Skip to content

Commit

Permalink
Fixed silly bug for $gt and $ge.
Browse files Browse the repository at this point in the history
  • Loading branch information
tilk committed May 18, 2020
1 parent 6566145 commit 028f99d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -428,7 +428,7 @@ function yosys_to_digitaljs_mod(name, mod, portmaps, options = {}) {
dev.type = 'Repeater';
}
break;
case '$eq': case '$ne': case '$lt': case '$le': case 'gt': case 'ge':
case '$eq': case '$ne': case '$lt': case '$le': case '$gt': case '$ge':
case '$eqx': case '$nex':
dev.bits = {
in1: cell.connections.A.length,
Expand Down

0 comments on commit 028f99d

Please sign in to comment.