Skip to content

Commit b60abfa

Browse files
author
Sebastien Bourdeauducq
committedJan 5, 2012
Convert -> convert
1 parent 3b640c4 commit b60abfa

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed
 

‎build.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def str2file(filename, contents):
3131
str2file("soc.v", src_verilog)
3232
str2file("soc.ucf", src_ucf)
3333
verilog_sources.append("build/soc.v")
34-
34+
#raise SystemExit
3535
# xst
3636
xst_prj = ""
3737
for s in verilog_sources:

‎milkymist/uart/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ def __init__(self, address, clk_freq, baud=115200):
1414
self.tx = Signal(reset=1)
1515
self.rx = Signal()
1616

17-
self.divisor = int(clk_freq/baud/16); # TODO
17+
self.divisor = int(clk_freq/baud/16) # TODO
1818

1919
def get_fragment(self):
2020
enable16 = Signal()

‎tb/norflash/norflash_conv.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55

66
norflash0 = norflash.Inst(25, 12)
77
frag = norflash0.get_fragment()
8-
v = verilog.Convert(frag, name="norflash",
8+
v = verilog.convert(frag, name="norflash",
99
ios={norflash0.bus.cyc_i, norflash0.bus.stb_i, norflash0.bus.we_i, norflash0.bus.adr_i, norflash0.bus.sel_i, norflash0.bus.dat_i, norflash0.bus.dat_o, norflash0.bus.ack_o})
1010
print(v)

‎top.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def get():
2525

2626
frag = autofragment.from_local()
2727
vns = convtools.Namespace()
28-
src_verilog = verilog.Convert(frag,
28+
src_verilog = verilog.convert(frag,
2929
{clkfx_sys.clkin, reset0.trigger_reset},
3030
name="soc",
3131
clk_signal=clkfx_sys.clkout,

0 commit comments

Comments
 (0)
Please sign in to comment.