Skip to content

Commit

Permalink
Convert -> convert
Browse files Browse the repository at this point in the history
  • Loading branch information
Sebastien Bourdeauducq committed Jan 5, 2012
1 parent 3b640c4 commit b60abfa
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion build.py
Expand Up @@ -31,7 +31,7 @@ def str2file(filename, contents):
str2file("soc.v", src_verilog)
str2file("soc.ucf", src_ucf)
verilog_sources.append("build/soc.v")

#raise SystemExit
# xst
xst_prj = ""
for s in verilog_sources:
Expand Down
2 changes: 1 addition & 1 deletion milkymist/uart/__init__.py
Expand Up @@ -14,7 +14,7 @@ def __init__(self, address, clk_freq, baud=115200):
self.tx = Signal(reset=1)
self.rx = Signal()

self.divisor = int(clk_freq/baud/16); # TODO
self.divisor = int(clk_freq/baud/16) # TODO

def get_fragment(self):
enable16 = Signal()
Expand Down
2 changes: 1 addition & 1 deletion tb/norflash/norflash_conv.py
Expand Up @@ -5,6 +5,6 @@

norflash0 = norflash.Inst(25, 12)
frag = norflash0.get_fragment()
v = verilog.Convert(frag, name="norflash",
v = verilog.convert(frag, name="norflash",
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})
print(v)
2 changes: 1 addition & 1 deletion top.py
Expand Up @@ -25,7 +25,7 @@ def get():

frag = autofragment.from_local()
vns = convtools.Namespace()
src_verilog = verilog.Convert(frag,
src_verilog = verilog.convert(frag,
{clkfx_sys.clkin, reset0.trigger_reset},
name="soc",
clk_signal=clkfx_sys.clkout,
Expand Down

0 comments on commit b60abfa

Please sign in to comment.