Simple VLSI processor

synthetisable description with COMPASS ASIC synthetiser

prepared by P. Bakowski


The processor specifications are given in lesson seven. The synthetisable version uses 16-bit words instead of 32-bit words as given in the specification.

Note that processor integrates no memory blocks. Consequently no synthethic components are necessary to synthetize the processor circuits.

More complex DSP processor with integrated synthetic components is presented in the next example.


LIBRARY IEEE;

USE IEEE.STD_LOGIC_1164.ALL;

LIBRARY COMPASS_LIB;

USE COMPASS_LIB.COMPASS.ALL;

entity proc_syn is

end proc_syn;

architecture beh of proc_syn is

-- programmer accessible registers

-- internal carriers

begin

main:process(nreset,clk) -- sequential process

-- adduressing mode field

-- operation mode field

-- FSM states : processor sequencer is based on 4 states

variable at_tmp: bit_vector(16 downto 0);

variable ad_tmp: bit_vector(15 downto 0);

variable irop: bit_vector(5 downto 0);

variable irad: bit_vector(1 downto 0);

variable tcon: integer;

begin

if(nreset='0') then -- initialize state

elsif clk'event and clk='1' then

end if;

end process main;

end beh;


back to synthesis lesson