aboutsummaryrefslogtreecommitdiff
path: root/src/test/resources/blackboxes/ParameterizedViaHeaderAdderExtModule.v
blob: 1042ef5448c82e6cd0be1843052747293040c509 (plain)
1
2
3
4
5
6
7
8
// SPDX-License-Identifier: Apache-2.0
module ParameterizedViaHeaderAdderExtModule(
  input [15:0] foo,
  output [15:0] bar
);
  `include "VerilogHeaderFile.vh"
  assign bar = foo + VALUE;
endmodule