norflash tb: use get_fragment
authorSebastien Bourdeauducq <sebastien@milkymist.org>
Sat, 17 Dec 2011 14:22:26 +0000 (15:22 +0100)
committerSebastien Bourdeauducq <sebastien@milkymist.org>
Sat, 17 Dec 2011 14:22:26 +0000 (15:22 +0100)
tb/norflash/norflash_conv.py

index 341f5e4cba2db01fe0a1a21d7a50acfdb0a6cb0c..15226acaf145270f7b174ab85294a51bd8fc812c 100644 (file)
@@ -1,9 +1,10 @@
 from migen.fhdl import verilog
 from migen.bus import wishbone
+
 from milkymist import norflash
 
 norflash0 = norflash.Inst(25, 12)
-frag = norflash0.GetFragment()
+frag = norflash0.get_fragment()
 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)