mirror of
https://github.com/YosysHQ/yosys
synced 2025-10-04 23:14:00 +00:00
presentation progress
This commit is contained in:
parent
9d0b69edaa
commit
982c9da011
19 changed files with 199 additions and 45 deletions
|
@ -1,8 +1,7 @@
|
|||
module test(input D, C, R, RV,
|
||||
output reg Q);
|
||||
module test(input D, C, R, output reg Q);
|
||||
always @(posedge C, posedge R)
|
||||
if (R)
|
||||
Q <= RV;
|
||||
Q <= 0;
|
||||
else
|
||||
Q <= D;
|
||||
endmodule
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue