Re: [myhdl-list] Conversion to VHDL
Brought to you by:
jandecaluwe
From: Christopher F. <chr...@gm...> - 2015-04-05 03:40:16
|
On 4/2/15 10:22 AM, Edward Vidal wrote: > Hello All, > > <snip> > Where W0 = 9 > x = Signal(intbv(0, min=-(2**(W0)), max=(2**(W0)))) > z = Signal(intbv(0)[W0:]) > > <snip> > z.next = x[W0:] > yield clk.posedge > matrix_sa[ma_row][ma_col].next = z > > Should the above convert to VHDL as No it would not convert because MyHDL currently does not support 2D list-of-signals (what I assume matrix_sa is). Regards, Chris |