Created
July 6, 2019 21:39
-
-
Save Ravenslofty/7ead4ac0a06afccb3b181558e8a70ccb to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| generate | |
| genvar n; | |
| for (n = 0; n < S_COUNT; n = n + 1) begin // Quartus: this block requires a name | |
| assign request[n] = s_udp_hdr_valid[n] && !grant[n]; | |
| assign acknowledge[n] = grant[n] && s_udp_payload_axis_tvalid[n] && s_udp_payload_axis_tready[n] && s_udp_payload_axis_tlast[n]; | |
| end | |
| endgenerate |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment