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 3851688
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 19, 20262026-05-19T17:12:05+00:00 2026-05-19T17:12:05+00:00

What does it mean to do a negation of a bit vector in VHDL?

  • 0

What does it mean to do a negation of a bit vector in VHDL? For example if I have 10100111 which is a bit vector called temp and I do something like temp := not temp what will my output be?

  • 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-19T17:12:05+00:00Added an answer on May 19, 2026 at 5:12 pm

    You can use “not” on vectors. Just run the program below with ModelSim or ISim and the inverted/negated bit vector will be printed in the console.

    LIBRARY ieee;
    USE ieee.numeric_bit.ALL;
    
    entity test is
    end entity test;
    
    architecture beh of test is
    
        function vec_image(arg : bit_vector) return string is
            -- original author Mike Treseler (http://mysite.ncnetwork.net/reszotzl/)
            -- recursive function call turns ('1','0','1') into "101"
            -------------------------------------------------------------------------------
            constant arg_norm        : bit_vector(1 to arg'length) := arg;
            constant center          : natural := 2;     --  123
            variable bit_image       : string(1 to 3);   --  '0'
            variable just_the_number : character;
        begin
            if (arg'length > 0) then
                bit_image       := bit'image(arg_norm(1));   -- 3 chars: '0'
                just_the_number := bit_image(center);              -- 1 char    0
                return just_the_number                          -- first digit
                & vec_image(arg_norm(2 to arg_norm'length)); -- rest the same way
                else
                return ""; -- until "the rest" is nothing
            end if;
        end function vec_image;
    begin
    
        demo:process is
            variable bitvec : bit_vector (7 downto 0) := "10100111";
        begin
            report vec_image(bitvec);
            report vec_image(not bitvec); -- not bit vector
            wait;
        end process demo;
    
    end architecture beh;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Does [_\s^] mean underscore and whitespace but not (quote) in Reg I understand that
Does that mean that if I delete an managed object which has references (relationship)
What does * mean in XAML. I have a grid of width 400. And
Does it mean only a total of 8 float values can be passed per
Does that mean that I can't share a Form between delphi 2007 and 2009?
Does it mean search the previous folder for somefile.h or the project folder for
What does =~ mean in Perl? Further, what does += mean? What are these
What does it mean, when an in-browser websocket object receives a onmessage event with
What does it mean to convert an integer value to a void* or viceversa
What does it mean when you get or create a date in UTC format

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.