Skip to content

Commit 1d03c34

Browse files
bl0xwhitequark
authored andcommitted
vendor.xilinx: Replace use of _reset with _init in Xilinx platform.
1 parent ae71cf6 commit 1d03c34

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

amaranth/vendor/_xilinx.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1214,7 +1214,7 @@ def get_io_buffer(self, buffer):
12141214
def get_ff_sync(self, ff_sync):
12151215
m = Module()
12161216
flops = [Signal(ff_sync.i.shape(), name=f"stage{index}",
1217-
init=ff_sync._reset, reset_less=ff_sync._reset_less,
1217+
init=ff_sync._init, reset_less=ff_sync._reset_less,
12181218
attrs={"ASYNC_REG": "TRUE"})
12191219
for index in range(ff_sync._stages)]
12201220
if self.toolchain == "Vivado":

0 commit comments

Comments
 (0)