Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7529057
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T04:33:20+00:00 2026-05-30T04:33:20+00:00

Hello i was wondering how a signal declaration really works in VHDL. Does it

  • 0

Hello i was wondering how a signal declaration really works in VHDL. Does it imply delay since its an internal signal? Do signals have an internal memory?
example:

Architecture SD_BEH of SD is
signal C: std_logic;
begin
 process (A)
  begin 
   C<=A;
   if (C='1') then B<=A;
   else B<= '0';
   end if;
  end process;
end SD_BEH;

Does this declaration of C introduce δ delay? If so why? Is it a standard in VHDL? Thanks.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-30T04:33:22+00:00Added an answer on May 30, 2026 at 4:33 am

    Signals only propagate at the end of a delta cycle, so you could call that having “memory” as in some manner. Viewing VHDL as a description for real hardware, signals do not have any memory unless they are modeled as such, for example by using a clocked process to describe a register.

    Assuming what you have above is trying to model combinational logic, it won’t simulate correctly, because the sensitivity list is not complete. To be clear, it will simulate “correctly” as it is written according to VHDL language rules, but it it won’t describe any sort of normal real hardware. To make it match up, consider the following minor change:

    Architecture SD_BEH of SD is
    signal C: std_logic;
    begin
     process (A, C) -- add C to the sensitivity list
      begin 
       C<=A;
       if (C='1') then B<=A;
       else B<= '0';
       end if;
      end process;
    end SD_BEH;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Hello: I have been experimenting with WPF this afternoon, Im wondering does anyone know
Hello just wondering why firbug is stating NaN even when these inputs have information
Hello I am wondering how do you have an android app that can go
Hello I have something like div.find(input).autocomplete({ ..... and am wondering if I can add
I have a string String x = Hello.August 27th.Links.page 1; I am wondering if
Hello android designers, 1-I have been wondering. Is it a good design approach to
Hello I am using LibXML to parse an rss feed and I am wondering
Hello I have the following error by git-fsck, which cannot be cleaned by git-gc
Hello I was wondering how to get the starter template for asp.net mvc showing
Hello i was wondering if it is possible and if so how? to do

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.