63. Functions and Tasks Basics

Question.6

What does the structurally wired logical out evaluate to?

function get_status(input [3:0] flags);
    get_status = &flags;
endfunction

wire out = get_status(4'b1011) | get_status(4'b1111);

 

Need Help? Refer to the Quick Guide below

Select Answer