I am a newbie, just bought BASYS2 digilent FPGA Board. I have background on
microcontrollers. C/C++ is no problem for me. But I am having some
trouble with FPGA. Actually, not with FPGA but with Compiler and ISE. As
you can see in the attachment, I configured the FPGA chip. I am using
BASYS2 board. This is the implementation code:
---------------------
module myModule(A, B);
input wire A;
output wire B;
assign B = !A;
endmodule
----------------------
And this is the ucf code:
-----------------------
# Onboard LEDs
NET "B" LOC = "M11";
NET "A" LOC = "C11";
------------