Use the following command to force Bash to save command history:
history -w
Use the following command to force Bash to save command history:
history -w
Here’s oneliner to remove the first 9 characters from a filename and convert all the spaces to ‘_’:
for i in *.mp3;do n=`echo $i | cut -b 9- | sed ’s/\ /_/’`;echo $i : $n;done
Sometimes during synthesis, XST spits out a warning saying something to the effect of “Can’t join a register to an input pin because they are not under the same hierarchy. Do one of the following to fix this problem: (three choices that flatten your design).”
I think this problem is caused by the synthesis tool trying to pack the edge registers into IOBs where it can’t get to certain signals. To fix this problem (and keep the design hierarchy) two things need to be done:
attribute iob: string; attribute iob of lcl_control_regs_instance : label is "FALSE";