This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
labs:sp20_codebreaker_serial [2020/06/09 14:59] ee220ta [Exercise #2 - Decrypt and Display a Message (SM design)] |
labs:sp20_codebreaker_serial [2020/06/11 10:18] (current) nelson [Exercise #1 - Draw a message on the screen] |
||
---|---|---|---|
Line 98: | Line 98: | ||
Look over the code and draw a block diagram of it to make sure you understand how it works. The module contains: | Look over the code and draw a block diagram of it to make sure you understand how it works. The module contains: | ||
* A ''clk_generator'' instance, that generates two clocks (only one of which is being used in this design). **NOTE: this is a complex circuit which is able to synthesize multiple other clocks from a single input clock. As such, it REQUIRES at least 400ns simulation time before it will output valid clock signals to the rest of your circuit. See note below.** | * A ''clk_generator'' instance, that generates two clocks (only one of which is being used in this design). **NOTE: this is a complex circuit which is able to synthesize multiple other clocks from a single input clock. As such, it REQUIRES at least 400ns simulation time before it will output valid clock signals to the rest of your circuit. See note below.** | ||
+ | * Before you proceed, go back and re-read the previous paragraph. What it is saying is that in your .tcl file, once you start the clock going you should simulate 400ns without doing anything else just so the clock generator can initialize itself. Only then should you start resetting or doing anything else with your circuit. | ||
* A ''CharDrawer_serial'' instance. It is used to send bytes out the "tx_out" port to be displayed by the "putty" program. It relies on your having added your own Uart Transmitter design to the project. Find down near the bottom where it instances a ''tx'' instance - that should be your design. Make sure the module name and port names match your design. | * A ''CharDrawer_serial'' instance. It is used to send bytes out the "tx_out" port to be displayed by the "putty" program. It relies on your having added your own Uart Transmitter design to the project. Find down near the bottom where it instances a ''tx'' instance - that should be your design. Make sure the module name and port names match your design. | ||
* ''SevenSegmentControl'' and ''stopwatch'' instances, that are configured like the Stopwatch lab. | * ''SevenSegmentControl'' and ''stopwatch'' instances, that are configured like the Stopwatch lab. |