Re: Re: problem sa sintezom
> Uf nesto me zeza The Bat.Dakle evo tog dela:
>
> Startuj: process(RxD,current_state) is
> begin
> if RxD='0' and RxD'event then
> case current_state is
> when READY => StartFlag<='1';
> when others => StartFlag<='0';
> end case;
> else StartFlag<='0';
> end if;
> end process Startuj;
>
> ovo je taj proces koji nece da sintetizuje.
> meni treba da postavim StartFlag na 1 samo kada se state masina nalazi
> u stanju READY,a u svim ostalim treba da bude 0. Probala sam da
> okrenem da prvo udje u case, a u when READY da proverava RxD medjutim
> ni tako ne radi.
>
Zasto ovaj uslov ne napises ovako
Startuj: process(RxD,current_state) is
begin
if RxD='0' and RxD'event and current_state=READY then
StartFlag<='1'
else StartFlag<='0';
end if;
end process Startuj;
- Follow-Ups:
- Re: Re: problem sa sintezom
- From: "Ana Balevic" <taucet@eunet.yu>
- Re: Re: problem sa sintezom
- References:
- RE: vlsi-nastava] problem sa sintezom
- From: "Gvozden Marinkovic" <mgvozden@eunet.yu>
- Re: problem sa sintezom
- From: Ana Balevic <alegria@ikomline.net>
- Re: Re: problem sa sintezom
- From: "Ana Balevic" <taucet@eunet.yu>
- RE: vlsi-nastava] problem sa sintezom
Previous by date: Re: Fifo
Next by date: Pitanje
Previous by thread: Re: Re: problem sa sintezom Next by thread: Re: Re: problem sa sintezom
Previous by thread: Re: Re: problem sa sintezom Next by thread: Re: Re: problem sa sintezom