Re: [myhdl-list] GSoC'16 | JPEG Encoder
Brought to you by:
jandecaluwe
From: Martin S. <ha...@se...> - 2016-03-02 21:37:29
|
Hi, > > What do you mean my VLIW microcode? Why does it need to be VL? > It's like the parallel instructions for some DSPs like the Intel Micro Signal Architecture (Blackfin). To avoid extra decoding stages, the opcodes just turned out simplest as "VLIW". Snippet: # LD SELB VADD PERM MODE ST ( 0, 1, 1, 3, MODE_ASAA, 0, ), #0: ( 3, 0, 1, 3, MODE_ASAA, 2, ), #1: ... For example, portions of a long opcode control the different stage switches of the pipeline (whether you do just a mul, a mac or de-mac). Greetings, - Martin |