mirror of https://github.com/YosysHQ/yosys.git
Merge remote-tracking branch 'origin/eddie/write_xaiger_improve' into xaig_dff
This commit is contained in:
commit
f6c0ec1d09
|
@ -59,6 +59,34 @@ module OBUF(
|
||||||
assign O = I;
|
assign O = I;
|
||||||
endmodule
|
endmodule
|
||||||
|
|
||||||
|
module IOBUF (
|
||||||
|
(* iopad_external_pin *)
|
||||||
|
inout IO,
|
||||||
|
output O,
|
||||||
|
input I,
|
||||||
|
input T
|
||||||
|
);
|
||||||
|
parameter integer DRIVE = 12;
|
||||||
|
parameter IBUF_LOW_PWR = "TRUE";
|
||||||
|
parameter IOSTANDARD = "DEFAULT";
|
||||||
|
parameter SLEW = "SLOW";
|
||||||
|
assign IO = T ? 1'bz : I;
|
||||||
|
assign O = IO;
|
||||||
|
endmodule
|
||||||
|
|
||||||
|
module OBUFT (
|
||||||
|
(* iopad_external_pin *)
|
||||||
|
output O,
|
||||||
|
input I,
|
||||||
|
input T
|
||||||
|
);
|
||||||
|
parameter CAPACITANCE = "DONT_CARE";
|
||||||
|
parameter integer DRIVE = 12;
|
||||||
|
parameter IOSTANDARD = "DEFAULT";
|
||||||
|
parameter SLEW = "SLOW";
|
||||||
|
assign O = T ? 1'bz : I;
|
||||||
|
endmodule
|
||||||
|
|
||||||
module BUFG(
|
module BUFG(
|
||||||
(* clkbuf_driver *)
|
(* clkbuf_driver *)
|
||||||
output O,
|
output O,
|
||||||
|
|
|
@ -326,7 +326,7 @@ CELLS = [
|
||||||
Cell('IBUFGDS', port_attrs={'I': ['iopad_external_pin'], 'IB': ['iopad_external_pin']}),
|
Cell('IBUFGDS', port_attrs={'I': ['iopad_external_pin'], 'IB': ['iopad_external_pin']}),
|
||||||
Cell('IBUFGDS_DIFF_OUT', port_attrs={'I': ['iopad_external_pin'], 'IB': ['iopad_external_pin']}),
|
Cell('IBUFGDS_DIFF_OUT', port_attrs={'I': ['iopad_external_pin'], 'IB': ['iopad_external_pin']}),
|
||||||
# I/O.
|
# I/O.
|
||||||
Cell('IOBUF', port_attrs={'IO': ['iopad_external_pin']}),
|
# Cell('IOBUF', port_attrs={'IO': ['iopad_external_pin']}),
|
||||||
Cell('IOBUF_DCIEN', port_attrs={'IO': ['iopad_external_pin']}),
|
Cell('IOBUF_DCIEN', port_attrs={'IO': ['iopad_external_pin']}),
|
||||||
Cell('IOBUF_INTERMDISABLE', port_attrs={'IO': ['iopad_external_pin']}),
|
Cell('IOBUF_INTERMDISABLE', port_attrs={'IO': ['iopad_external_pin']}),
|
||||||
Cell('IOBUFE3', port_attrs={'IO': ['iopad_external_pin']}),
|
Cell('IOBUFE3', port_attrs={'IO': ['iopad_external_pin']}),
|
||||||
|
@ -342,7 +342,7 @@ CELLS = [
|
||||||
Cell('OBUFDS', port_attrs={'O': ['iopad_external_pin'], 'OB': ['iopad_external_pin']}),
|
Cell('OBUFDS', port_attrs={'O': ['iopad_external_pin'], 'OB': ['iopad_external_pin']}),
|
||||||
Cell('OBUFDS_DPHY', port_attrs={'O': ['iopad_external_pin'], 'OB': ['iopad_external_pin']}),
|
Cell('OBUFDS_DPHY', port_attrs={'O': ['iopad_external_pin'], 'OB': ['iopad_external_pin']}),
|
||||||
# Output + tristate.
|
# Output + tristate.
|
||||||
Cell('OBUFT', port_attrs={'O': ['iopad_external_pin']}),
|
# Cell('OBUFT', port_attrs={'O': ['iopad_external_pin']}),
|
||||||
Cell('OBUFTDS', port_attrs={'O': ['iopad_external_pin'], 'OB': ['iopad_external_pin']}),
|
Cell('OBUFTDS', port_attrs={'O': ['iopad_external_pin'], 'OB': ['iopad_external_pin']}),
|
||||||
# Pulls.
|
# Pulls.
|
||||||
Cell('KEEPER'),
|
Cell('KEEPER'),
|
||||||
|
|
|
@ -8160,18 +8160,6 @@ module IBUFGDS_DIFF_OUT (...);
|
||||||
input IB;
|
input IB;
|
||||||
endmodule
|
endmodule
|
||||||
|
|
||||||
module IOBUF (...);
|
|
||||||
parameter integer DRIVE = 12;
|
|
||||||
parameter IBUF_LOW_PWR = "TRUE";
|
|
||||||
parameter IOSTANDARD = "DEFAULT";
|
|
||||||
parameter SLEW = "SLOW";
|
|
||||||
output O;
|
|
||||||
(* iopad_external_pin *)
|
|
||||||
inout IO;
|
|
||||||
input I;
|
|
||||||
input T;
|
|
||||||
endmodule
|
|
||||||
|
|
||||||
module IOBUF_DCIEN (...);
|
module IOBUF_DCIEN (...);
|
||||||
parameter integer DRIVE = 12;
|
parameter integer DRIVE = 12;
|
||||||
parameter IBUF_LOW_PWR = "TRUE";
|
parameter IBUF_LOW_PWR = "TRUE";
|
||||||
|
@ -8373,17 +8361,6 @@ module OBUFDS_DPHY (...);
|
||||||
input LPTX_T;
|
input LPTX_T;
|
||||||
endmodule
|
endmodule
|
||||||
|
|
||||||
module OBUFT (...);
|
|
||||||
parameter CAPACITANCE = "DONT_CARE";
|
|
||||||
parameter integer DRIVE = 12;
|
|
||||||
parameter IOSTANDARD = "DEFAULT";
|
|
||||||
parameter SLEW = "SLOW";
|
|
||||||
(* iopad_external_pin *)
|
|
||||||
output O;
|
|
||||||
input I;
|
|
||||||
input T;
|
|
||||||
endmodule
|
|
||||||
|
|
||||||
module OBUFTDS (...);
|
module OBUFTDS (...);
|
||||||
parameter CAPACITANCE = "DONT_CARE";
|
parameter CAPACITANCE = "DONT_CARE";
|
||||||
parameter IOSTANDARD = "DEFAULT";
|
parameter IOSTANDARD = "DEFAULT";
|
||||||
|
|
|
@ -218,12 +218,6 @@ module MUXF8(input I0, I1, S, output O);
|
||||||
endmodule
|
endmodule
|
||||||
|
|
||||||
// Citation: https://github.com/alexforencich/verilog-ethernet
|
// Citation: https://github.com/alexforencich/verilog-ethernet
|
||||||
// TODO: yosys -p "synth_xilinx -abc9 -top abc9_test022" abc9.v -q
|
|
||||||
// returns before b4321a31
|
|
||||||
// Warning: Wire abc9_test022.\m_eth_payload_axis_tkeep [7] is used but has no
|
|
||||||
// driver.
|
|
||||||
// Warning: Wire abc9_test022.\m_eth_payload_axis_tkeep [3] is used but has no
|
|
||||||
// driver.
|
|
||||||
module abc9_test022
|
module abc9_test022
|
||||||
(
|
(
|
||||||
input wire clk,
|
input wire clk,
|
||||||
|
@ -237,9 +231,6 @@ module abc9_test022
|
||||||
endmodule
|
endmodule
|
||||||
|
|
||||||
// Citation: https://github.com/riscv/riscv-bitmanip
|
// Citation: https://github.com/riscv/riscv-bitmanip
|
||||||
// TODO: yosys -p "synth_xilinx -abc9 -top abc9_test023" abc9.v -q
|
|
||||||
// returns before 14233843
|
|
||||||
// Warning: Wire abc9_test023.\dout [1] is used but has no driver.
|
|
||||||
module abc9_test023 #(
|
module abc9_test023 #(
|
||||||
parameter integer N = 2,
|
parameter integer N = 2,
|
||||||
parameter integer M = 2
|
parameter integer M = 2
|
||||||
|
|
Loading…
Reference in New Issue