8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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 s 822F end you account related emails.
Already on GitHub? Sign in to your account
This following design lead to a combinational cycle :
// In place array sum rediction unit main(output uint8 leds) { int16 X[8]={1,2,3,4,5,6,7,8}; algorithm { X[0] = X[0] + X[4]; X[1] = X[1] + X[5]; X[2] = X[2] + X[6]; X[3] = X[3] + X[7]; ++: X[0] = X[0] + X[2]; X[1] = X[1] + X[3]; ++: X[0] = X[0] + X[1]; __display("%d",X[0]); } }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This following design lead to a combinational cycle :
The text was updated successfully, but these errors were encountered: