1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587
|
// Not legal:
// end : ADDRESS_TEST_BLOCK // See 9.8.1
// `define at EOF with no newline
module bug26141 ();
wire [0:3] b;
wire a = b[2];
endmodule
module bug26940 ();
(* attribute *)
assign q = {1'b0,a} +{1'b0,b};
adder u_add (.q(q),.a(d),.b(d));
initial begin
# 1;
q=0;
if (q!=0) $stop;
end
endmodule
module bug26968 ();
reg [4:0] vect = 5'b10100;
wire [4:0] tmp = { vect[0], vect[1], vect[2], vect[3], vect[4] };
initial begin
#1 $display("vect=%b, tmp=%b", vect, tmp);
end
endmodule
module bug26969 (input [31:0] ad, output [15:0] regff, input [31:0] read);
bufif0 ad_drv [31:0] (ad, {16'b0, regff}, read);
endmodule
module bug26970;
parameter A = 2'b1, B = 3'b0;
parameter x = {B,B,B,A,A,B};
endmodule
module bug26997;
MUX_REG_8x8 PAGE_REG_B3 (
.CLK (CLK),
/*
.IN (DATA_RES[31:24]),
.OUT (PAGE[31:24]),
.EN_IN (EN_B3),
.EN_OUT (PAGE_SEL),
*/
.TC (),
.TD (),
.TQ ());
endmodule
module bug27013;
submod u1(0);
submod u2(1);
endmodule
module bug27036;
reg [2:0] a_fifo_cam_indices[3:0], lt_fifo_cam_indices[5:0];
wire [2:0] db0_a_fifo_cam_indices = a_fifo_cam_indices[0];
endmodule
module bug27037;
reg mem[12:2];
reg [7:0] i;
endmodule
module bug27039;
integer i;
endmodule
module bug27045(
input clk, input reset,
input [7:0] d,
output reg [7:0] q );
parameter REG_DELAY = 0;
always @(posedge clk or posedge reset)
q <= #(REG_DELAY*2) d;
endmodule
module bug27062 (input D, output Q);
p(Q, D);
endmodule
`timescale 1ns/1ns
module bug27066;
integer i;
time t;
realtime rt;
function integer toint;
input integer y;
input [15:0] x;
toint = x|y;
endfunction
endmodule
module bug27067;
initial $monitor( "%T %b %b %b", $time, clk1, clko1, clko2 );
initial forever @( negedge clk1 ) dclk1ff <= #50 ~ dclk1ff;
endmodule
module bug27072(
output reg sum,
input wire ci);
endmodule
`resetall
module spec;
specify
specparam
Tac = 0.1,
Tcs = 0.2;
if ( !B & !M )
( posedge CLK => ( Q[0] : 1'bx )) = ( Tac, Tcs );
$width (negedge CLK &&& EN, Tac, 0, notif_clk);
( in1 => q ) = (3, 4);
( in1 +=> q ) = Tac;
( a, b, c *> q1, q2) = 10;
( s +*> q ) = Tcs;
endspecify
endmodule
module bugevent;
event e;
initial ->e;
always @ (e && e) $write("Legal\n");
endmodule
module bugio (input [31:0] a, a2, output [15:0] o, o2, input ibit);
endmodule
module buglocal;
always #(cyclehalf) begin
clk <= ~clk;
end
always @(*) begin end
initial force flag = 0;
initial #(delta+0.5) CLRN <= 1;
assign (weak0,weak1) VDD=1'b0;
assign (weak0,weak1) VSS=1'b1;
wire [71:0] #1 xxout = xxin;
initial #1000_000 $finish;
initial $display($time,,"Double commas are stupid");
initial for (counter[3:0] = 4'h0; counter[3:0] < limit[3:0];
counter[3:0] = counter[3:0] + 4'h1) $write();
always @(posedge(clk && !xclk) or negedge(clk && xclk) or reset) $write();
nmos # (PullTime, PullTime, 0) (PT,PU,1'b1);
pulldown (strong0) pullinst (r);
defparam x.y.z.PAR = 1;
cdrv #5.0 clk(clk);
initial PI = 3.1415926535_8979323846;
always val = @ eventid 1'h1;
always dly = # (2:3:4) 5'h6 ;
wire \33escapeneeded = 1'b1;
wire \33escapenewlineend
= 1'b1;
wire \noescapenewlineend
= 1'b1;
wire \noescapespaceend = 1'b1;
endmodule
module v2kparam
#(parameter WIDTH = 1,
parameter LENGTH = 1, LENGTH2 = 1)
(output [WIDTH-1:0] myout,
input [LENGTH-1:0] myin, myinb
);
assign myout = myin ^ myinb ^ $callemptyparens();
endmodule
module foreqn (in);
input [1:0] in;
reg a,b;
reg [1:0] c;
always for ({a,c[0]} = in; a < 1'b1; {b,c[1]} = in) begin
end
always for ({a,c[in]} = 0; a < 1'b1; {b,c[in]} = 2'b10) begin
end
endmodule
module colonslash;
always @*
case (cond&4'b1110)
'h0://Error
t = 7;
'h2:/*Another comment*/
t = 6;
'h4: t = 5;
endcase
endmodule
module enums;
enum {red, yellow, green} light;
enum integer {IDLE, XX='x, S1='b01, S2='b10} state, next;
enum {bronze=3, silver, gold} medal;
enum { add=10, sub[5], jmp[6:8] } E1;
typedef enum {NOPE, YUP} boolean;
enum logic [1:0] {IDLE, DIR} STATE, NSTATE;
endmodule
module invec (
output logic novec,
output logic [7:0] range,
output logic [1:0] [7:0] arrayAndRange,
output logic [2:0] [1:0] [7:0] arrayAndArrayAndRange,
output reg signed novec2
);
endmodule
module bug34575;
wire a,b,c,d;
assign #(0,0) a = 1;
assign #(0:1:2) b = 1;
assign #(0:1:2,0:1:2) c = 1;
assign #(0:1:2,0) d = 1;
endmodule
module bug34649 (name);
output reg name = 0;
endmodule
module bug34649b (
output reg name = 0
);
endmodule
module bug10;
initial begin
x += 1;
x -= 1;
x /= 1;
x *= 1;
x |= 1;
x ^= 1;
x <<= 1;
x >>= 1;
x <<<= 1;
x >>>= 1;
y = x++; // Part of expression
y = ++x;
y = x--;
y = --x;
x++; // Statement
++x;
x--;
--x;
end
endmodule
module bug33;
integer i;
initial begin
unique case (i)
endcase
priority case (i)
endcase
if (i) begin end else begin end
end
endmodule
module bug16;
timeunit 0.1ns;
timeprecision 1ns;
endmodule
parameter bug39 = 0;
`default_nettype none
`pragma foo = bar
`default_nettype wire
module bug64;
parameter integer a=1,b=2;
parameter real c=3.0;
parameter realtime d=4.0;
parameter time e=5.0;
endmodule
module bug166;
assign {{o1,o2},o3,o4,{o5,o6}} = {{i1,i2},i3,i4,{i5,i6}};
endmodule
module coverage20090318;
task atask;
begin end
endtask
endmodule
module svsig;
function int count (input logic [3:0] d);
automatic int count = d[0]+d[1]+d[2]+d[3];
for (int i=0; i<4; i++) begin
if (d[i]) count++;
end
return (count);
endfunction
task automatic autoconst;
const int CONS = 8;
$display("CONS=%x\n", CONS);
$display("Another stmt\n");
endtask
endmodule
module bug_empty_func_param;
//function int intfunc(int a=0, b=1);
// return a+b;
//endfunction
always_comb begin
foo = funccall();
foo = intfunc(a, b);
foo = intfunc(a, .b(b));
foo = intfunc(.b(b), .a(a));
end
endmodule
module dotted_funcs;
initial ram.dotTask(addr[31:0],ramdata); // Call task
initial zz = ram.a.dotFunc(foo); // Call function
endmodule
module var_only_in_block;
initial begin : named
integer only_a_var_in_blk;
end
endmodule
module v2k_vec_no_vec
( input [2:0] VEC,
VEC2, // No direction, no port, no data type; inherits
input NOVEC, // No direction, no data type; use `default_nettype
input ARY [1:0],
NOARY2, // Array doesn't inherit
logic STILL_IN, // No direction, data type; inherits direction
input logic TYPED // Logic type
);
task t (input [2:0] FVEC, FVEC2,
input NOVEC);
begin end
endtask
endmodule
module bugfor;
initial for (a=0;a;) begin end
endmodule
module bug85 #(parameter type T_DATA = byte)
(data);
input T_DATA data;
sub #(.T_DATA( T_DATA ))
sub (.data(data));
endmodule
module bugmodportcomma (,a,);
input a;
endmodule
module bug168;
initial $display("\nWarning! This is a\
string with a line\
continuation\
at time %0d PS", $time);
endmodule
module bug183
#(parameter NUM = 9
, WIDTH = 8
) ( input logic [NUM-1:0][WIDTH-1:0] a
, output logic [WIDTH-1:0] sum
);
localparam NLOG =
(NUM <= 2) ? 1
: (NUM <= 1024) ? 10
: 0;
typedef logic [WIDTH-1:0] val_t;
val_t [NLOG:0][NUM-1:0] tree;
endmodule
module bug192;
covergroup cg192 @(posedge cclk);
count_tag_busy: coverpoint countones_tag_busy {
bins count[] = {[0:DEPTH]};
}
endgroup: cg192
cg192 cover_ts = new(); // also bug361
endmodule
function bit func_implied_in (bit i); g_bit = ~i; endfunction
module sparam;
specparam delay = 10;
endmodule
// bug221
sequence stable_before_s(sig, clks_before, clk, rst=1'b0);
@(clk) !rst throughout(##1 $stable(sig)[*clks_before-1]);
endsequence : stable_before_s
property stable_window(sample, sig, clks_before, clks_after, clk=$default_clk ,rst=1'b0);
@(clk) disable iff(rst) ## clks_before sample
|-> stable_before_s(sig, clks_before, clk, rst).ended ##1
($stable(sig)[*clks_after]);
endproperty : stable_window
property never(prop, clk=$default_clk , rst=1'b0);
@(clk) disable iff(rst) not(prop);
endproperty : never
property recur_triggers(trig, n, cond, clk=$default_clk , rst=1'b0);
@(clk) disable iff (rst)
not ( !cond throughout (trig ##1 trig[->(n-1)]) );
endproperty : recur_triggers
property data_transfer(
start_ev, start_data, end_ev, end_data, clk=$default_clk ,rst=1'b0);
logic [$bits(start_data)-1:0] local_data;
@(clk) disable iff (rst)
(start_ev, local_data = start_data) ##0
(end_ev or (!end_ev ##1 (!start_ev throughout end_ev[->1])))
|-> (local_data == end_data);
endproperty : data_transfer
module bug228;
wire net1, net2, net3;
nmos #(0:1:10, 0:1:10, 0:1:10) u (net1, net2, net3);
endmodule
module bug262 ( Y, {A1, A2} , B );
output Y;
input A1, A2, B;
endmodule
wire \wire = bug282_must_keep_escape;
module bug403_bug404;
// Simulators vary as to if "(* /* */ )" is legal or not
(* attr *) wire foo;
always @ (*) begin end
always @ (*
) begin end
endmodule
/* multi
line
bug459*/
module bug422;
generate
endgenerate
endmodule
module bug461;
generate
genvar g; // bug461
begin : topgen
genvar g2;
genvar g1;
for (g=0; g<100; g++) begin end
for (g=0; g<100; g++) begin end
end
for (g=0; g<100; g++) begin end
endgenerate
endmodule
module bug507;
integer x = 32'd
6;
endmodule
// bug_msg_887;
bind path.to.example_mod example_mod_fcov uexample_mod_fcov (.*);
package bug586_pkg;
parameter B = 10;
endpackage
module non_bug586; // Verilator only
input logic [bug586_pkg::B : 0] bvar;
endmodule
// bug_641
import "DPI-C" function bit mydpi_bug641(input a_dpi_input);
// .f() in function call
module fbug;
initial a = f(, 1);
initial a = f(.s(1), .j(2));
initial a = f(.s(), .j());
initial a = f(2);
initial a = f();
endmodule
parameter bug671 = 5 : 10 : 20 ;
module bug256;
always @(posedge clk) begin
myreg1 <= # 100 7'd0;
myreg1 <= # 100 'b0;
myreg1 <= # 100'b0; // [#] [100] ['b0]
myreg1 <= 100'b0;
end
endmodule
module msg1491(A,B);
output A;
trireg (small) A;
output trireg B;
endmodule
module msg2540
(output signed foo);
endmodule
module prot();
`protected
I!#r#e6<_Q{{E2+]I3<[3s)1@D|'E''i!O?]jD>Jo_![Cl)
#nj1]p,3^1~,="E@QZB\T)eU\pC#C|7=\$J$##A[@-@{Qk]
`endprotected
endmodule
module prot2();
`pragma protect begin_protected
`pragma protect encrypt_agent = "Whatever agent"
`pragma protect encrypt_agent_info = "1.2.3"
`pragma protect data_method = "aes128-cbc"
`pragma protect key_keyowner = "Someone"
`pragma protect key_keyname = "somekey", key_method = "rsa"
`pragma protect key_block encoding = (enctype = "base64")
wefjosdfjklajklasjkl
`pragma protect data_block encoding = (enctype = "base64", bytes = 1059)
I!#r#e6<_Q{{E2+]I3<[3s)1@D|'E''i!O?]jD>Jo_![Cl)
#nj1]p,3^1~,="E@QZB\T)eU\pC#C|7=\$J$##A[@-@{Qk]
`pragma protect end_protected
`pragma reset protect
endmodule
module prot3();
//pragma protect begin_protected
//pragma protect key_keyowner=Cadence Design Systems.
//pragma protect key_keyname=CDS_KEY
//pragma protect key_method=RC5
//pragma protect key_block
zzZzZ/4ZzzZZZzzz4zZzZzZZZZzZzZ/Zz+33zZ2zz/zzzzzzzzZZZzZ4z+ZZZZz1
Z1ZzzzZZzZZzz9ZZZZ37zzZzZzZzzz9ZZzzZzZz9Zz64+z8Z7ZzZZZzzzzZZZzZz
zzZzZZZzZ0463zzzzzZzZ6z00z4zZzzZZzzZzzzZZ8zzz09ZzZZZZZ==
//pragma protect end_key_block
//pragma protect digest_block
ZzZZzzZ9ZZZZz2ZzzzZz/Zzzz8Z=
//pragma protect end_digest_block
//pragma protect data_block
ZZZ8zZzz6ZZ/zZZ5zZZzzz3ZzzzZzZZZ6ZzZzZZZZZz1zzZZZZ7ZZZZz3Zzz+9zz
4zzz+8zZzzzzZzZZzzzZzz1Z7ZzZz+zZz8ZZZZzZ6ZzzZzZZzzZZzzZzzZzZzZzZ
ZzzzzZ0zZz1ZzzZzzZzZzz==
//pragma protect end_data_block
//pragma protect digest_block
Z4Z6zZzZ3Z7ZZ6zzZZZZzzzzZZZ=
//pragma protect end_digest_block
//pragma protect end_protected
endmodule
module bug1340;
parameter B=
8
'b
1
;
endmodule
module msg2931;
nettype int net1_t;
net1_t mynet1;
nettype int net2_t with resolvefunc;
net2_t mynet2;
nettype net_t net3_t;
net3_t mynet3;
endmodule
module bug1505;
sub i_suba ();
sub i_subb[1:2] ();
sub i_subc[1:2][3:4][5:6] ();
endmodule
|