Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Icarus Verilog bug in processing "1'b1 >= |1'bx" #14

Closed
cliffordwolf opened this issue Feb 17, 2014 · 1 comment
Closed

Icarus Verilog bug in processing "1'b1 >= |1'bx" #14

cliffordwolf opened this issue Feb 17, 2014 · 1 comment

Comments

@cliffordwolf
Copy link
Contributor

@cliffordwolf cliffordwolf commented Feb 17, 2014

The following module should set y to 1'bx. But Icarus Verilog (git b1ef099) sets the output to 1'b1.

module issue_024(y);
  output y;
  assign y = 1'b1 >= |1'bx;
endmodule
@martinwhitaker
Copy link
Collaborator

@martinwhitaker martinwhitaker commented Feb 18, 2014

I've pushed a fix for this to the git master branch.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Linked pull requests

Successfully merging a pull request may close this issue.

None yet
2 participants