Вывод в stdout
$display(), $write()
module display_write_tb;
reg [7:0] a, b;
initial begin
a = 8'd4;
b = 8'd5;
$write("Vars: ");
$display("a = %0d; b = %0d", a, b);
end
endmoduleVars: a = 4; b = 5$strobe()
Last updated