HDLRuby 2.11.2 → 2.11.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 284593b60cc81aa5e8f0f80a4370ffa33452763e22cf8928d3af1d773c69e8d4
4
- data.tar.gz: 1f2f0a10ec13a7050740b621a436cf61b80895f0205033768bba101a358b911f
3
+ metadata.gz: 5b3303f28a79a14a42fb2421335afdbaa40c148440e622edaca2f8a98804192d
4
+ data.tar.gz: 12dd7c5fd160141c151db950b7d797ef53bf012549ef983f8cf1b648edb3a85e
5
5
  SHA512:
6
- metadata.gz: 14458d5c7ae19883a43231859bce22f2e29efdbdaeb8b721af8178eab50626bbe49393c9b009eeb33b1301aeba0dec136cec804faf8c9e63a33c85ecd7595bc8
7
- data.tar.gz: 542354d84103276c6875dab37528d4a7a7218d71d11a8dc70b6d49aa43a9c72c8967d729282126a24b84e763eb94297ffffae50dc9c785deb2d811cf29125c4b
6
+ metadata.gz: 94ba5098e5e8003f64c53f86ba47f8e831e3e49d39aa4f8991f3595dfec560749079720a6602bf76f2e31eacf88c922a0c689bf575e2ec17a48256dba70010d0
7
+ data.tar.gz: 1856330cc10987e979ed13211d3a6aaaa1f382bfe9a6831a4a235eac35ea912844c5ca9b667f2a899b87a47518c29e38cb8c9b7c6a5ee27e953872fb810b8f30
data/README.md CHANGED
@@ -1949,15 +1949,19 @@ There are two kinds of such statements:
1949
1949
  !10.ns
1950
1950
  ```
1951
1951
 
1952
- - The `repeat` statements: such a statement takes as argument a time value and a block. The execution of the block is repeated until the delay that is given by the time value argument expires. For example, the following code executes repeatedly the inversion of the `clk` signal every 10 nanoseconds for 10 seconds (i.e., it simulates a clock signal for 10 seconds):
1952
+ - The `repeat` statements: such a statement takes as argument a number of iteration and a block. The execution of the block is repeated the given number times. For example, the following code executes 10 times the inversion of the `clk` signal every 10 nanoseconds:
1953
1953
 
1954
1954
  ```ruby
1955
- repeat(10.s) do
1955
+ repeat(10) do
1956
1956
  !10.ns
1957
1957
  clk <= ~clk
1958
1958
  end
1959
1959
  ```
1960
1960
 
1961
+ __Note:__
1962
+
1963
+ This statement is not synthesizable and therefore can only be used in timed behaviors.
1964
+
1961
1965
  ### Parallel and sequential execution
1962
1966
 
1963
1967
  Time behaviors are by default sequential, but they can include both parallel and