forked from github/verilator
Tests: Standardize verilog indentation.
This commit is contained in:
parent
50535a1894
commit
383f9832d4
@ -6,14 +6,16 @@
|
|||||||
|
|
||||||
// This module will be used as libsecret.a or libsecret.so without
|
// This module will be used as libsecret.a or libsecret.so without
|
||||||
// exposing the source.
|
// exposing the source.
|
||||||
module secret_impl(
|
|
||||||
input [31:0] a,
|
|
||||||
input [31:0] b,
|
|
||||||
output logic [31:0] x,
|
|
||||||
input clk);
|
|
||||||
|
|
||||||
logic [31:0] accum_q = 0;
|
module secret_impl
|
||||||
logic [31:0] secret_value = 9;
|
(
|
||||||
|
input [31:0] a,
|
||||||
|
input [31:0] b,
|
||||||
|
output logic [31:0] x,
|
||||||
|
input clk);
|
||||||
|
|
||||||
|
logic [31:0] accum_q = 0;
|
||||||
|
logic [31:0] secret_value = 9;
|
||||||
|
|
||||||
initial $display("%m: initialized");
|
initial $display("%m: initialized");
|
||||||
|
|
||||||
|
@ -11,15 +11,15 @@
|
|||||||
module top
|
module top
|
||||||
(
|
(
|
||||||
// Declare some signals so we can see how I/O works
|
// Declare some signals so we can see how I/O works
|
||||||
input clk,
|
input clk,
|
||||||
input reset_l,
|
input reset_l,
|
||||||
|
|
||||||
output wire [1:0] out_small,
|
output wire [1:0] out_small,
|
||||||
output wire [39:0] out_quad,
|
output wire [39:0] out_quad,
|
||||||
output wire [69:0] out_wide,
|
output wire [69:0] out_wide,
|
||||||
input [1:0] in_small,
|
input [1:0] in_small,
|
||||||
input [39:0] in_quad,
|
input [39:0] in_quad,
|
||||||
input [69:0] in_wide
|
input [69:0] in_wide
|
||||||
);
|
);
|
||||||
|
|
||||||
// Connect up the outputs, using some trivial logic
|
// Connect up the outputs, using some trivial logic
|
||||||
|
@ -11,16 +11,16 @@
|
|||||||
module top
|
module top
|
||||||
(
|
(
|
||||||
// Declare some signals so we can see how I/O works
|
// Declare some signals so we can see how I/O works
|
||||||
input clk,
|
input clk,
|
||||||
input fastclk,
|
input fastclk,
|
||||||
input reset_l,
|
input reset_l,
|
||||||
|
|
||||||
output wire [1:0] out_small,
|
output wire [1:0] out_small,
|
||||||
output wire [39:0] out_quad,
|
output wire [39:0] out_quad,
|
||||||
output wire [69:0] out_wide,
|
output wire [69:0] out_wide,
|
||||||
input [1:0] in_small,
|
input [1:0] in_small,
|
||||||
input [39:0] in_quad,
|
input [39:0] in_quad,
|
||||||
input [69:0] in_wide
|
input [69:0] in_wide
|
||||||
);
|
);
|
||||||
|
|
||||||
// Connect up the outputs, using some trivial logic
|
// Connect up the outputs, using some trivial logic
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
module sub
|
module sub
|
||||||
#(parameter type TYPE_t = logic)
|
#(parameter type TYPE_t = logic)
|
||||||
(
|
(
|
||||||
input TYPE_t in,
|
input TYPE_t in,
|
||||||
output TYPE_t out
|
output TYPE_t out
|
||||||
);
|
);
|
||||||
|
|
||||||
|
@ -7,16 +7,16 @@
|
|||||||
|
|
||||||
module top
|
module top
|
||||||
(
|
(
|
||||||
input clk,
|
input clk,
|
||||||
input fastclk,
|
input fastclk,
|
||||||
input reset_l,
|
input reset_l,
|
||||||
|
|
||||||
output wire [1:0] out_small,
|
output wire [1:0] out_small,
|
||||||
output wire [39:0] out_quad,
|
output wire [39:0] out_quad,
|
||||||
output wire [69:0] out_wide,
|
output wire [69:0] out_wide,
|
||||||
input [1:0] in_small,
|
input [1:0] in_small,
|
||||||
input [39:0] in_quad,
|
input [39:0] in_quad,
|
||||||
input [69:0] in_wide
|
input [69:0] in_wide
|
||||||
);
|
);
|
||||||
|
|
||||||
sub #(.TYPE_t(logic [1:0])) sub_small
|
sub #(.TYPE_t(logic [1:0])) sub_small
|
||||||
|
@ -22,12 +22,12 @@ module t(/*AUTOARG*/
|
|||||||
);
|
);
|
||||||
input clk;
|
input clk;
|
||||||
|
|
||||||
integer cyc=0;
|
integer cyc=0;
|
||||||
reg [63:0] crc;
|
reg [63:0] crc;
|
||||||
reg [63:0] sum;
|
reg [63:0] sum;
|
||||||
|
|
||||||
// Take CRC data and apply to testblock inputs
|
// Take CRC data and apply to testblock inputs
|
||||||
wire [31:0] in = crc[31:0];
|
wire [31:0] in = crc[31:0];
|
||||||
|
|
||||||
/*AUTOWIRE*/
|
/*AUTOWIRE*/
|
||||||
// Beginning of automatic wires (for undeclared instantiated-module outputs)
|
// Beginning of automatic wires (for undeclared instantiated-module outputs)
|
||||||
|
Loading…
Reference in New Issue
Block a user