diff options
author | Javier Valenzuela <javier.valenzuela@ni.com> | 2022-07-08 09:53:15 -0500 |
---|---|---|
committer | skooNI <60897865+skooNI@users.noreply.github.com> | 2022-07-20 15:57:20 -0500 |
commit | 7d86e2e17e47a2ebc063c479716d108d270c6586 (patch) | |
tree | 5d900b71270fbc0dc83d2452fbb750b94024437c /fpga/usrp3 | |
parent | 25a127c843b100144c502779c4cae37098624f88 (diff) | |
download | uhd-7d86e2e17e47a2ebc063c479716d108d270c6586.tar.gz uhd-7d86e2e17e47a2ebc063c479716d108d270c6586.tar.bz2 uhd-7d86e2e17e47a2ebc063c479716d108d270c6586.zip |
fpga: lib: Update error call for undefined RW mode
Diffstat (limited to 'fpga/usrp3')
-rw-r--r-- | fpga/usrp3/lib/control/ram_2port_impl.vh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fpga/usrp3/lib/control/ram_2port_impl.vh b/fpga/usrp3/lib/control/ram_2port_impl.vh index fe1d790cc..54c00a883 100644 --- a/fpga/usrp3/lib/control/ram_2port_impl.vh +++ b/fpga/usrp3/lib/control/ram_2port_impl.vh @@ -149,8 +149,8 @@ module `RAM_MOD_NAME #( end end - end else begin - ERROR_Invalid_RW_MODE_selection(); + end else begin : gen_error + ERROR_Invalid_RW_MODE_selection ERROR(); end endgenerate endmodule |