ERROR: [XSIM 43-3190] File "C:/Users/ono/Documents/HDL/Vivado/SV_Examples/data_t_ex2/data_t_ex2.srcs/sources_1/imports/data_types_example2/real_type_example.sv" Line 31 : The "System Verilog real type port" is not supported yet for simulation.
`timescale 1ns / 1ps
module real_type_example_tb;
parameter DELAY = 5;
logic clk;
int a;
shortreal real_out;
realtime time_out;
longint b;
real_type_example real_type_example_i (.*);
initial begin
clk = 1'b0;
forever begin
clk = #10 ~clk;
end
end
initial begin
a = 5;
@(posedge clk); // 次のクロックへ
#DELAY;
@(posedge clk); // 次のクロックへ
#DELAY;
a = 10;
@(posedge clk); // 次のクロックへ
#DELAY;
end
endmodule
日 | 月 | 火 | 水 | 木 | 金 | 土 |
---|---|---|---|---|---|---|
- | - | - | - | - | 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 | - | - | - | - | - | - |