On Jun 27, 4:12=A0am, Tricky <Trickyh...@[EMAIL PROTECTED]
> wrote:
>
> >rst_gen: process
> > =A0begin
> > =A0 =A0 =A0 wait for 30 ns;
> > =A0 =A0 =A0rst <=3D '0';
> > =A0end process rst_gen;
>
> In this process, rst is being assigned to '0' every 30ns. This will
> probably not cause a problem, but it does make "rst'transaction" go
> high for that single delta. Personally, I would put "wait;" after "rst
Or simply...
rst <=3D '1', '0' after 30 ns;
KJ


|