Skip to content

Commit 66ff962

Browse files
committed
xls:modules:rle: Review: Change step to proc
Signed-off-by: Maciej Dudek <[email protected]>
1 parent a84a8ec commit 66ff962

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

xls/modules/rle/rle_enc_adv.x

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@
2323
// The behavior of the encoder is presented on the waveform below:
2424

2525
// This encoder is implemented as a net of 4 proc.
26-
// 1. Reduce step - this process takes incoming symbols and symbol_valid
26+
// 1. Reduce proc - this process takes incoming symbols and symbol_valid
2727
// and reduces them into symbol count pairs. This step is stateless.
28-
// 2. Realign step - this process moves pairs emitted from the reduce step
28+
// 2. Realign proc - this process moves pairs emitted from the reduce step
2929
// so that they are aligned to the left, it also calculates propagation
3030
// distance for the first pair.
3131
// Example behaviours:
@@ -37,13 +37,13 @@
3737
// input: [.., .., (A, 3), (A, 1)]
3838
// output: [(A, 3), (A, 1), .., ..]
3939
// propagation distance: 1
40-
// 3. Core step - this step is stateful. It takes align pairs from
40+
// 3. Core proc - this step is stateful. It takes align pairs from
4141
// the realign step, and combines them with its state to create multiple
4242
// symbol/count pairs output. State is represented by following tuple
4343
// `<symbol, count, last>`. It contains symbol and count from last pair
4444
// received from realign step, or current sum of repeating symbol spanning
4545
// multiple input widths.
46-
// 4. - Adjust Width step - this step takes output from the core step.
46+
// 4. Adjust Width proc - this step takes output from the core step.
4747
// If output can handle more or equal number of pairs as
4848
// input number of symbols. This step does nothing.
4949
// If the output is narrower than the input,

0 commit comments

Comments
 (0)