Page 1 of 1

6. Reg data type in verilog is a a) data storage element (holds a value-acts as a "variable") b) Can't store data c) It'

Posted: Tue Jun 07, 2022 11:33 am
by answerhappygod
6 Reg Data Type In Verilog Is A A Data Storage Element Holds A Value Acts As A Variable B Can T Store Data C It 1
6 Reg Data Type In Verilog Is A A Data Storage Element Holds A Value Acts As A Variable B Can T Store Data C It 1 (20.09 KiB) Viewed 27 times
thank you.
6. Reg data type in verilog is a a) data storage element (holds a value-acts as a "variable") b) Can't store data c) It's a volatile d) None of the above 7. module dff (input d, input clk, output reg q, qbar); Please draw the entity diagram of the above 8. module basic_gatel (a, b, y); input a, b, output y assign y=a & b endmodule Above program is for what kind of gate? module basic_gate2 (a, b, y); input a, b; output y assign y=-(ab); endmodule Above program is for what kind of gate? 10. module basicgate 3 (a, b, y); input a, b, output y assign y = a^b; endmodule Above program is for what kind of gate?