Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. Robbe147

    Sensor square wave input

    Your code is correct if it is placed in a synchronous (clocked) process. Implementing this combinatorially is certainly not recommended. Theoretically it should work, but in practice you have no control over the combinatorial delay of the different signals which may lead to rubbish. Also if the...
  2. Robbe147

    Memory implementation - expecting IF

    Each "if" should be followed by a "end if" Now, two constructions are valid: 1) if MemWrite='1'then data_mem(addr):= write_data; else if MemRead='1' then read_data <= data_mem(addr) after 10ns; end if; end if; 2) (Notice the "elsif" in one word) if MemWrite='1'then...
  3. Robbe147

    The possibility to use for-loop instead of a lot of whens?

    try this: process(inports,id_in_sig) begin for N in inports'range loop if id_in_sig = conv_std_logic_vector(N, id_in_sig'length) then time_out <= inports(N); end if; end loop; end process;
  4. Robbe147

    clk divider not working as expected

    First of all, it's not a good idea to use a variable here. Add a signal declaration in your architecture (before "begin") signal cnt: integer range 0 to 4 :=0; Secondly, Instead of cnt := cnt+1, try: if cnt=4 then cnt <= 0; else cnt <= cnt+1; end if; If this doesn't solve to...
  5. Robbe147

    4:1 MUX issue

    You got a bit confused. An architecture is a certain implementation of an entity. When you simulate or implement this only one of the architectures will be used. solution: ARCHITECTURE beh OF mux4 IS signal ftemp: std_logic; BEGIN WITH s SELECT ftemp <= D(0) WHEN "00", D(1)...
  6. Robbe147

    wait on

    if sig1 and sig2 are std_logic_vectors, I would just make a sig3 which is the concatenation: sig3 <= sig1 & sig2; Then just WAIT ON sig3;
  7. Robbe147

    signal assignment inside a for loop

    Try this: process variable cntvar: natural; begin cntvar := cnt; for i 0 to 2 loop cntvar := cntvar + 1; end loop; cnt <= cntvar; end process;
  8. Robbe147

    Please help with problem

    The process in the videoOutClockImpl architecture is a synchronous process, but you forgot to write "if (rising_edge(clk))" A synchronous process should always look like this: process(CLOCK11) begin if (rising_edge(CLOCK11)) then ... end if; end process; If it was the intention to...

Part and Inventory Search

Back
Top