mirror of
https://github.com/YosysHQ/yosys
synced 2025-08-09 20:50:51 +00:00
presentation progress
This commit is contained in:
parent
aa732b0c73
commit
6983d3f10b
10 changed files with 80 additions and 0 deletions
7
manual/PRESENTATION_ExSyn/proc_00.v
Normal file
7
manual/PRESENTATION_ExSyn/proc_00.v
Normal file
|
@ -0,0 +1,7 @@
|
|||
module test(input D, C, R, output reg Q);
|
||||
always @(posedge C, posedge R)
|
||||
if (R)
|
||||
Q <= 0;
|
||||
else
|
||||
Q <= D;
|
||||
endmodule
|
Loading…
Add table
Add a link
Reference in a new issue