i have a spartan3e FPGA, i built a 2 bit counter with it, and generated the corresponding xdl file with "xdl -ncd2xdl". in the xdl file, i found the following program:
inst "XDL_DUMMY_CLB_X1Y22_VCC_X2Y24" "VCC",placed CLB_X1Y22 VCC_X2Y24 ,
cfg "_NO_USER_LOGIC:: _VCC_SOURCE::VCCOUT "
;
net "GLOBAL_LOGIC1_0" vcc,
outpin "XDL_DUMMY_CLB_X1Y22_VCC_X2Y24" VCCOUT ,
inpin "out_0" BY ,
pip CLB_X1Y22 BY3 -> BY_PINWIRE3 ,
pip CLB_X1Y22 VCC_PINWIRE -> BY3 ,
;
however when i turn these two statements off, i can't find any change in the bitstream file. is there any bits in the spartan3e bitstream that map to the above statments? i'm really puzzled because i suppose there should be some bits in relation with this VCC routing, but in fact i can't find any...
thanks.