File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -143,9 +143,9 @@ def extract_outputs(model):
143
143
# we need to create an intermediate wire, which will be used in twire()
144
144
# whenever the original wire is referenced. For example, given 2-bit Output 'a',
145
145
# every access to 'a[1]' will really be a reference to 'a[1]_i', a normal
146
- # WireVector connected to 'a[1]. An key property is that the name by
147
- # which all other parts of the code refers to this wire doesn't change;
148
- # the only thing that changes is what underlying wire
146
+ # WireVector connected to 'a[1]'. A key property is that the name by
147
+ # which all other parts of the code refer to this wire doesn't change;
148
+ # the only thing that changes is what underlying wire is used.
149
149
if bitwidth == 1 :
150
150
bit_internal = WireVector (bitwidth = 1 , name = output_name + '[0]' , block = block )
151
151
bit_out = Output (bitwidth = 1 , name = output_name , block = block )
You can’t perform that action at this time.
0 commit comments