init
This commit is contained in:
20
code/vezba8/verif/Agent/calc_seq_item.sv
Normal file
20
code/vezba8/verif/Agent/calc_seq_item.sv
Normal file
@@ -0,0 +1,20 @@
|
||||
`ifndef CALC_SEQ_ITEM_SV
|
||||
`define CALC_SEQ_ITEM_SV
|
||||
|
||||
class calc_seq_item extends uvm_sequence_item;
|
||||
|
||||
rand logic [31:0] operand1;
|
||||
rand logic [31:0] operand2;
|
||||
rand logic [3:0] cmd;
|
||||
|
||||
|
||||
`uvm_object_utils_begin(calc_seq_item)
|
||||
`uvm_object_utils_end
|
||||
|
||||
function new (string name = "calc_seq_item");
|
||||
super.new(name);
|
||||
endfunction // new
|
||||
|
||||
endclass : calc_seq_item
|
||||
|
||||
`endif
|
||||
Reference in New Issue
Block a user