[ExportVerilog] Synchronous Negedge Reset?
Nobody has claimed this yet.
- Dominant language
- C++
- Stars
- 2.2k
- Forks
- 524
- Avg merge
- 3d 2h
- Merged PRs (30d)
- 46
Description
Example MLIR
```
module attributes {circt.loweringOptions = "locationInfoStyle=none"} {
hw.module @Foo(%I: i8, %CLK: i1, %RESETN: i1) -> (O: i8) {
%1 = sv.reg {name = "Register_inst0"} : !hw.inout
sv.alwaysff(posedge %CLK) {
sv.passign %1, %I : i8
} (syncreset : negedge %RESETN) {
sv.passign %1, %2 : i8
}
%2 = hw.constant 0 : i8
sv.initial {
sv.bpassign %1, %2 : i8
}
%0 = sv.read_inout %1 : !hw.inout
hw.output %0 : i8
}
}
```
verilog out
```
module Foo(
input [7:0] I,
input CLK,
RESETN,
output [7:0] O);
reg [7:0] Register_inst0;
always_ff @(posedge CLK) begin
if (RESETN)
Register_inst0 <= 8'h0;
else
Register_inst0 <= I;
end // always_ff @(posedge)
initial
Register_inst0 = 8'h0;
assign O = Register_inst0;
endmodule
```
Investigating the docs and code it seems that negedge logic is only generated for async resets. Is there any reason that synchronous negedge is not supported? If not, I'd be happy to update the code.
Relevant issue: https://github.com/phanrahan/magma/issues/1178
Contributor guide
No contributing guide indexed for this repository
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Start by tracing the ExportVerilog handling of synchronous and asynchronous reset logic, using the MLIR example and generated Verilog in this issue as the behavioral reference. Determine whether synchronous negedge reset should be supported, then verify that the generated output preserves the intended reset polarity and behavior.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- cpp
- Domain
- compilers
- Issue type
- Feature
- Difficulty
- 4/5
- Estimated time
- 3-5 days
- Activity status
- Stale
- Clarity
- Mostly clear
- Newbie friendliness
- 35/100