Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

- Add an additional reset input, this should be an active low input. - Add the necessary code to implement this /reset feature. The following

image text in transcribed

- Add an additional reset input, this should be an active low input. - Add the necessary code to implement this /reset feature.

The following outlines the process of adding the reset feature :- Add an additional input reset (call it r). Add an input pin (label as /Reset) Add to the existing always@ procedural block as a trigger, another sensitivity for the negative edge of the block input r Using if - test the Boolean status of the block input r. If statement is true, use another non-blocking assignment to assign 0 to r, the non-blocking assignment is also used in line 7.

clk clk 4 1 // D flip-flop cw Reset (async) - when modified 2 3 reg 9 1'be; //defines the variable called "q" of type reg 5 always@(posedge clk)// sensitive to the pos-edge of clk 6 begin 7 9 (= d; // statement 1, assigns d to a 9 o 8 9 10 end D clk clk 4 1 // D flip-flop cw Reset (async) - when modified 2 3 reg 9 1'be; //defines the variable called "q" of type reg 5 always@(posedge clk)// sensitive to the pos-edge of clk 6 begin 7 9 (= d; // statement 1, assigns d to a 9 o 8 9 10 end D

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

OCA Oracle Database SQL Exam Guide Exam 1Z0-071

Authors: Steve O'Hearn

1st Edition

1259585492, 978-1259585494

More Books

Students also viewed these Databases questions

Question

Question How is life insurance used in a DBO plan?

Answered: 1 week ago