diff options
Diffstat (limited to 'manual/PRESENTATION_ExSyn/proc_01.v')
-rw-r--r-- | manual/PRESENTATION_ExSyn/proc_01.v | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/manual/PRESENTATION_ExSyn/proc_01.v b/manual/PRESENTATION_ExSyn/proc_01.v index 8e440f6ce..612863195 100644 --- a/manual/PRESENTATION_ExSyn/proc_01.v +++ b/manual/PRESENTATION_ExSyn/proc_01.v @@ -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 |