mirror of https://github.com/YosysHQ/yosys.git
9 lines
164 B
Verilog
9 lines
164 B
Verilog
|
(* blackbox *)
|
||
|
module AND(input [7:0] A, B, output [7:0] Y);
|
||
|
endmodule
|
||
|
|
||
|
(* blackbox *)
|
||
|
module ALU(input [7:0] A, B, output [7:0] Y);
|
||
|
parameter MODE = "";
|
||
|
endmodule
|