aboutsummaryrefslogtreecommitdiff
path: root/src/test/resources/blackboxes/SimpleExtModule.v
blob: 586003bdfaefeec71afb148bb2708c508fb288d1 (plain)
1
2
3
4
5
6
7
8
// SPDX-License-Identifier: Apache-2.0
module SimpleExtModule(
  input [15:0] foo,
  output [15:0] bar
);
  assign bar = foo;
endmodule