![]() |
|
|
|
#1 |
|
Hi,
Im working on a structural rs latch model but the q and nq initial values are wrong. When I tried to assign '0' and '1' initial values for x_q and x_nq in the architecture declaration the simulator got in an infinite loop. How can modify this model to reflect the correct beginning values of q and nq? LIBRARY ieee; use ieee.std_logic_1164.all; ENTITY rslatch IS PORT( s, r : IN std_logic; q, nq : OUT std_logic); END rslatch; ARCHITECTURE a OF rslatch IS signal x_q: std_logic; signal x_nq: std_logic; BEGIN x_q <= r nor x_nq; x_nq <= s nor x_q; nq <= x_nq; q <= x_q; END a; Thanks Attila Attila Csosz |
|
|
|
|
#2 |
|
Posts: n/a
|
Attila Csosz wrote:
> Im working on a structural rs latch model but the q and nq initial > values are wrong. http://groups.google.com/groups/sear...29%22+practice Mike Treseler |
|
|
|
#3 |
|
Posts: n/a
|
I need the (this) structural model for some reason.
Thanks Attila Mike Treseler wrote: > Attila Csosz wrote: > >> Im working on a structural rs latch model but the q and nq initial >> values are wrong. > > http://groups.google.com/groups/sear...29%22+practice > Attila Csosz |
|
![]() |
| Thread Tools | Search this Thread |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| model question | Prasanth.lj | MCITP | 0 | 06-25-2007 09:52 AM |
| Rental Subscription Model Fails To Spread | Black Locust | DVD Video | 0 | 09-18-2005 09:13 AM |
| Can't find Motherboard model on PCB! | A+ Certification | 5 | 08-06-2004 07:33 AM | |
| DoD model Vs OSI | J. Q. Etuo, MSCE 2003, A+ 2003 | A+ Certification | 1 | 05-20-2004 01:05 AM |
| Netflix Business Model Patented. | Scot Gardner | DVD Video | 2 | 09-22-2003 01:24 PM |