-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
15 changed files
with
109 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
|
||
// not cumulative | ||
always_ff @(posedge clk) begin | ||
data1_q <= data1_q + 1; | ||
data1_q <= data1_q + 1; | ||
data1_q <= data1_q + 1; | ||
data1_q <= data1_q + 1; | ||
end | ||
|
||
// doesn't warn that there is no default case | ||
always_ff @(posedge clk) begin | ||
if (rst) | ||
data2_q <= '0; | ||
end | ||
|
||
// unclear whether this is a DFF or DFFE | ||
always_ff @(posedge clk) begin | ||
if ( pkg::func(data3_i) ) | ||
data3_q <= data3_d; | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
|
||
\begin{figure}[t] | ||
\centering | ||
\inputminted[frame=single]{systemverilog}{code/always_ff.svh} | ||
\caption{Potentially confusing behaviors of \mintinline{systemverilog}{always_ff} blocks} | ||
\label{fig:always_ff} | ||
\end{figure} |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
|
||
\begin{figure}[t] | ||
\centering | ||
\frame{\includegraphics[width=\textwidth,height=0.9\textheight,keepaspectratio]{figures/asicworld.pdf}} | ||
\caption{This is an example provided by ASIC World that encourages bad design practices \cite{asicworld}} | ||
\label{fig:asicworld} | ||
\end{figure} |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
|
||
\begin{figure}[t] | ||
\centering | ||
\frame{\includegraphics[width=0.9\linewidth]{figures/chipdev_hack.pdf}} | ||
\caption{This example shows ChipDev \cite{ChipDev} incorrectly accepting this submission despite a potential mismatch between simulation and synthesis. For example, Verilator will override the \mintinline{systemverilog}{always_comb} with the \mintinline{systemverilog}{assign}, but Yosys will override the \mintinline{systemverilog}{assign} with the \mintinline{systemverilog}{always_comb}. This could be corrected if ChipDev chooses to incorporate a similar verification flow to what is outlined in \autoref{section:complex_tool_setups}.} | ||
\label{fig:chipdev_hack} | ||
\end{figure} |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
|
||
\begin{figure}[t] | ||
\centering | ||
\frame{\includegraphics[width=0.7\linewidth]{figures/chipdev_questions.pdf}} | ||
\caption{An example of questions that ChipDev offers. \cite{ChipDev}} | ||
\label{fig:chipdev_questions} | ||
\end{figure} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.