Skip to content

Author: marmara

Bird: in Verilog

Bird FSM Verilog CodeĀ  //bird CPU module bird ( input clk, input [15:0] data_in, output logic [15:0] data_out, output logic [11:0] address, output memwt );…

Comments closed

Discrete Fourier Transforms

$$ \begin{eqnarray} x[n] = \frac{1}{2\pi} \int_{<2\pi>}X(\Omega)e^{i\Omega n}d\Omega\\\\ X(\Omega) = \sum_{k=-\infty}^{\infty}x[k]e^{-i\Omega k} \end{eqnarray}$$ DFT FOR PERIODIC CASE Consider a periodic signal $x[n]$, $x[n+N]=x[n]$. $$ \begin{eqnarray} X(\Omega)…

Comments closed

Bird: IO Design

Bird Instruction Format Machine Code Format PUSH Push r Machine Code Format POP POP r Machine Code Format CALL CALL x Machine Code Format RET…

Comments closed