Skip to content

Commit 1b3edd0

Browse files
author
Sebastien Bourdeauducq
committedDec 17, 2011
norflash tb: use get_fragment
1 parent 0e30d67 commit 1b3edd0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
 

‎tb/norflash/norflash_conv.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
from migen.fhdl import verilog
22
from migen.bus import wishbone
3+
34
from milkymist import norflash
45

56
norflash0 = norflash.Inst(25, 12)
6-
frag = norflash0.GetFragment()
7+
frag = norflash0.get_fragment()
78
v = verilog.Convert(frag, name="norflash",
89
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})
910
print(v)

0 commit comments

Comments
 (0)
Please sign in to comment.