Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

library ieee; use ieee.std_logic_1164.all ; entity function1 is port ( A : in std_ulogic; B : in std_ulogic ; C : in std_ulogic ; Y

library ieee;

use ieee.std_logic_1164.all ;

entity function1 is

port ( A : in std_ulogic;

B : in std_ulogic ;

C : in std_ulogic ;

Y :out std_ulogic);

end function1;

architecture decription of function1 is begin

P1: process

variable temp1: bit ;

variable temp2: bit ;

variable temp3: bit ;

begin temp1 <= not A after 1 ns;

temp2 <= A AND C after 1ns;

temp3 <= temp1 AND B after 1ns;

Y <= temp2 OR temp3 after 1ns;

end description;

Problem 4: Copy the SOP circuit above to a new VHDL file, and increase the delay of the output OR gate. Simulate the circuit and answer the questions below.

How did adding delay to the output gate change the output transition?

Does adding delay to the output gate change the circuits glitch behavior in any way?

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Information Modeling And Relational Databases

Authors: Terry Halpin, Tony Morgan

2nd Edition

0123735688, 978-0123735683

More Books

Students also viewed these Databases questions