remove unintentional tabs in struct_pattern_cast.v

This commit is contained in:
Zachary Snow 2021-08-15 12:23:13 -07:00
parent 30acc3e3f9
commit 61ccf3cb22
1 changed files with 3 additions and 3 deletions

View File

@ -1,7 +1,7 @@
module top;
reg [63:0] a = { 8'd5, 16'd6, 32'd7, 8'd8 };
reg [63:0] b = { 8'd13, 16'd14, 32'd15, 8'd16 };
wire [63:0] c = { 8'd9, 16'd10, 32'd11, 8'd12 };
reg [63:0] a = { 8'd5, 16'd6, 32'd7, 8'd8 };
reg [63:0] b = { 8'd13, 16'd14, 32'd15, 8'd16 };
wire [63:0] c = { 8'd9, 16'd10, 32'd11, 8'd12 };
initial begin
#1;
$display("a %b", a);