-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[CompileGuard] Fix compile guard select key parsing
See #1291. Fixes two-key case (previously unsupported), and adds and refactors tests.
- Loading branch information
Showing
3 changed files
with
109 additions
and
10 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
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,68 @@ | ||
module coreir_reg #( | ||
parameter width = 1, | ||
parameter clk_posedge = 1, | ||
parameter init = 1 | ||
) ( | ||
input clk, | ||
input [width-1:0] in, | ||
output [width-1:0] out | ||
); | ||
reg [width-1:0] outReg=init; | ||
wire real_clk; | ||
assign real_clk = clk_posedge ? clk : ~clk; | ||
always @(posedge real_clk) begin | ||
outReg <= in; | ||
end | ||
assign out = outReg; | ||
endmodule | ||
|
||
module Register ( | ||
input I, | ||
output O, | ||
input CLK | ||
); | ||
wire [0:0] reg_P1_inst0_out; | ||
coreir_reg #( | ||
.clk_posedge(1'b1), | ||
.init(1'h0), | ||
.width(1) | ||
) reg_P1_inst0 ( | ||
.clk(CLK), | ||
.in(I), | ||
.out(reg_P1_inst0_out) | ||
); | ||
assign O = reg_P1_inst0_out[0]; | ||
endmodule | ||
|
||
module CompileGuardSelect_Bit_COND1_default ( | ||
input I0, | ||
input I1, | ||
output O | ||
); | ||
`ifdef COND1 | ||
assign O = I0; | ||
`else | ||
assign O = I1; | ||
`endif | ||
endmodule | ||
|
||
module _Top ( | ||
input I, | ||
output O, | ||
input CLK | ||
); | ||
wire Register_inst0_O; | ||
wire magma_Bit_xor_inst0_out; | ||
CompileGuardSelect_Bit_COND1_default CompileGuardSelect_Bit_COND1_default_inst0 ( | ||
.I0(Register_inst0_O), | ||
.I1(I), | ||
.O(O) | ||
); | ||
Register Register_inst0 ( | ||
.I(magma_Bit_xor_inst0_out), | ||
.O(Register_inst0_O), | ||
.CLK(CLK) | ||
); | ||
assign magma_Bit_xor_inst0_out = I ^ 1'b1; | ||
endmodule | ||
|
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