// DESCRIPTION: Verilator: Test of select from constant // // This file ONLY is placed under the Creative Commons Public Domain, for // any use, without warranty, 2020 by Wilson Snyder. // SPDX-License-Identifier: CC0-1.0 // verilator lint_off MULTIDRIVEN module t (/*AUTOARG*/ // Outputs o, // Inputs clk ); input clk; output int o; localparam SIZE = 65536; // Unsupported case 1: Array NBA inside suspendable int array1 [SIZE]; always @ (posedge clk) begin #1; o <= array1[1]; for (int i=0; i