File tree Expand file tree Collapse file tree 3 files changed +9
-9
lines changed Expand file tree Collapse file tree 3 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ Install on your python environment by using pip:
4747
4848 pip install jinja2
4949
50- - Pyverilog: 1.0.2 or later
50+ - Pyverilog: 1.0.3 or later
5151
5252Install from pip (or download and install from GitHub):
5353
@@ -203,7 +203,7 @@ module test #
203203
204204 reg CLK;
205205 reg RST;
206- wire [WIDTH - 1:0] LED;
206+ wire [WIDTH- 1:0] LED;
207207
208208 blinkled
209209 #(
@@ -253,10 +253,10 @@ module blinkled #
253253(
254254 input CLK,
255255 input RST,
256- output reg [WIDTH - 1:0] LED
256+ output reg [WIDTH- 1:0] LED
257257);
258258
259- reg [32 - 1:0] count;
259+ reg [32- 1:0] count;
260260
261261 always @(posedge CLK) begin
262262 if(RST) begin
Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ Install on your python environment by using pip:
5353
5454 pip install jinja2
5555
56- - Pyverilog: 1.0.2 or later
56+ - Pyverilog: 1.0.3 or later
5757
5858Install from pip (or download and install from GitHub):
5959
@@ -222,7 +222,7 @@ which is generated by the source code generator.
222222
223223 reg CLK;
224224 reg RST;
225- wire [WIDTH - 1:0] LED;
225+ wire [WIDTH- 1:0] LED;
226226
227227 blinkled
228228 #(
@@ -272,10 +272,10 @@ which is generated by the source code generator.
272272 (
273273 input CLK,
274274 input RST,
275- output reg [WIDTH - 1:0] LED
275+ output reg [WIDTH- 1:0] LED
276276 );
277277
278- reg [32 - 1:0] count;
278+ reg [32- 1:0] count;
279279
280280 always @(posedge CLK) begin
281281 if(RST) begin
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ def read(filename):
2121 url = 'https://github.com/PyHDI/veriloggen' ,
2222 packages = find_packages (),
2323 #package_data={ 'path' : ['*.*'], },
24- install_requires = [ 'pyverilog>=1.0.2 ' , 'Jinja2>=2.8' ],
24+ install_requires = [ 'pyverilog>=1.0.3 ' , 'Jinja2>=2.8' ],
2525 extras_require = {
2626 'graph' : [ 'pygraphviz>=1.3.1' ],
2727 'test' : [ 'pytest>=2.8.2' , 'pytest-pythonpath>=0.7' ],
You can’t perform that action at this time.
0 commit comments