Actions
Task #5753
closedSupport for the repeatition operation
Start date:
03/25/2015
Due date:
% Done:
100%
Estimated time:
Detected in build:
svn
Published in build:
150522
Description
{expr1}expr2 = expr2:: ... ::expr2 (expr1 times)
.
or
expr1{expr2} = expr2:: ... ::expr2 (expr1 times)
(as in Verilog).
Updated by Andrei Tatarnikov over 9 years ago
- Status changed from Open to Resolved
- % Done changed from 0 to 100
Implemented in r3654. Constructs like this are now supported:
rd = {4}value<0..7>;
This means the same as:
rd = value<0..7>::value<0..7>::value<0..7>::value<0..7>;
Please checks whether the simulator works correctly.
Updated by Andrei Tatarnikov over 9 years ago
- Status changed from Resolved to Closed
- Published in build set to 150522
Actions