SystemVerilog for Hardware Description by Vaibbhav Taraate
Author:Vaibbhav Taraate
Language: eng
Format: epub
ISBN: 9789811544057
Publisher: Springer Singapore
module generated_clock(input a_in, b_in, clk, output logic clk_out);
logic tmp_clk;
always_ff @ (posedge clk)
begin : temp_clock
tmp_clk <= a_in;
end : temp_clock
always_ff @ (posedge tmp_clk)
begin : clock_output
clk_out <= b_in;
end : clock_output
endmodule
/////////////////////////////////////////////////////////////////////////////
The synthesis result is shown in Fig. 8.10, and the design uses the positive edge-triggered flip-flops. Such type of designs have the propagation delay of n*tpff where n = number of flip-flops and tpff = propagation delay of flip-flop.
Fig. 8.10Synthesis result for the generated clocks
Download
This site does not store any files on its server. We only index and link to content provided by other sites. Please contact the content providers to delete copyright contents if any and email us, we'll remove relevant links or contents immediately.
Linux Device Driver Development Cookbook by Rodolfo Giometti(3958)
Embedded Programming with Modern C++ Cookbook by Igor Viarheichyk(3789)
Implementing Cellular IoT Solutions for Digital Transformation by Dennis McCain(3709)
Embedded Linux Development Using Yocto Project - Third Edition by Otavio Salvador & Daiane Angolini(3561)
TinyML Cookbook by Gian Marco Iodice(3475)
Simplifying 3D Printing with OpenSCAD by Colin Dow(2861)
TinyML Cookbook by Gian Marco Iodice & Ronan Naughton(2624)
Fusion 360 for Makers by Lydia Sloan Cline(2233)
Networking A Beginner's Guide by Bruce Hallberg(2230)
Hands-On Linux for Architects by Denis Salamanca(2075)
But How Do It Know? by J. Clark Scott(2039)
Computers For Seniors For Dummies by Nancy C. Muir(2023)
Raspberry Pi and MQTT Essentials by Dhairya Parikh(1981)
Arduino Project Handbook, Volume 2: 25 Simple Electronics Projects for Beginners by Geddes Mark(1963)
9781803246888-ENHANCING DEEP LEARNING WITH BAYESIAN INFERENCE by Unknown(1918)
Hack and HHVM by Owen Yamauchi(1904)
31 Days Before Your CompTIA A+ Exams (Shanette Luellen's Library) by Benjamin Patrick Conry(1878)
MicroPython Projects by Jacob Beningo(1768)
Hands-On Internet of Things with MQTT by Tim Pulver(1731)
