改正语法错误
This commit is contained in:
parent
5266c27908
commit
7a7af25ab5
|
@ -73,7 +73,6 @@ class readout_daq_rm extends uvm_component;
|
||||||
int clock_cycle ;
|
int clock_cycle ;
|
||||||
bit [31:0] cw_data ;
|
bit [31:0] cw_data ;
|
||||||
logic [63:0] adc_wave ;
|
logic [63:0] adc_wave ;
|
||||||
|
|
||||||
endclass
|
endclass
|
||||||
|
|
||||||
function readout_daq_rm::new(string name,uvm_component parent);
|
function readout_daq_rm::new(string name,uvm_component parent);
|
||||||
|
@ -120,10 +119,10 @@ endtask
|
||||||
|
|
||||||
task readout_daq_rm::run_phase(uvm_phase phase);//main task
|
task readout_daq_rm::run_phase(uvm_phase phase);//main task
|
||||||
fork
|
fork
|
||||||
task get_mcu_cw_item();
|
get_mcu_cw_item();
|
||||||
task get_adc_item();
|
get_adc_item();
|
||||||
task daq_exe(cw_data,clock_cycle,adc_wave);
|
daq_exe(cw_data,clock_cycle,adc_wave);
|
||||||
task send_spi_item();
|
send_spi_item();
|
||||||
join
|
join
|
||||||
endtask
|
endtask
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue