Re: [myhdl-list] combining values in signals
Brought to you by:
jandecaluwe
From: Josy B. <jos...@gm...> - 2015-03-03 18:34:39
|
I didn't do it exactly right: it should be like this: lft_s_i = ConcatSignal( *reversed( [ r[row - 1][col], r[row + 3 + i * 2] [col] for i in range(15)] )) You can, of course, also spell out the list in the call: lft_s_i = ConcatSignal( r[row + 31][col], r[row + 29][col], ... , r[row + 3][col], r[row - 1][col] ) Regards, Josy |