iyyappanbala
Newbie level 5
- Joined
- Nov 6, 2014
- Messages
- 9
- Helped
- 0
- Reputation
- 0
- Reaction score
- 0
- Trophy points
- 1
- Location
- karnadaka
- Activity points
- 49
Dear friends,
please help me to solve this problem,
How to swap number in behavioral modeling(non Blocking) Verilog Hdl,
module swap(a,b);
inout [3:0] a,b;
reg [3:0] a,b;
always@(a,b)
begin
b<=a;
a<=b;
end
endmodule
please help me to solve this problem,
How to swap number in behavioral modeling(non Blocking) Verilog Hdl,
module swap(a,b);
inout [3:0] a,b;
reg [3:0] a,b;
always@(a,b)
begin
b<=a;
a<=b;
end
endmodule