How to code integration in verilog

Y

yeah

Guest
HI
I am doing a project for 'Reducing sibilants in recorded speech' which
contains some mathematical integration.
Give me some idea about how to code integrations in verilog.
 
yeah schrieb:

Give me some idea about how to code integrations in verilog.
1) Choose an algorithm from numerical mathematics that fits your
requirements and is not too complex.
2) Think of a data path for that algorithm. (ALU, registers, busses)
3) Create register-transfer-states as a step-by-step solution for the
algorithm. (Select when a value from a register has to be read, where
it has to be used (ALU) and where it has to be saved.)

Ralf
 
On 9 2 , 3 51 , Ralf Hildebrandt <Ralf-Hildebra...@gmx.de> wrote:
yeah schrieb:

Give me some idea about how to code integrations in verilog.

1) Choose an algorithm from numerical mathematics that fits your
requirements and is not too complex.
2) Think of a data path for that algorithm. (ALU, registers, busses)
3) Create register-transfer-states as a step-by-step solution for the
algorithm. (Select when a value from a register has to be read, where
it has to be used (ALU) and where it has to be saved.)

Ralf
You can check out the realization of the CRC/DES/AES algorithm as the
reference.
 

Welcome to EDABoard.com

Sponsor

Back
Top