본문 바로가기
SMALL

분류 전체보기50

indexed part-select (Verilog 2001 => +: ) logic [31: 0] a_vect; logic [0 :31] b_vect; logic [63: 0] dword; integer sel; a_vect[ 0 +: 8] // == a_vect[ 7 : 0] a_vect[15 -: 8] // == a_vect[15 : 8] b_vect[ 0 +: 8] // == b_vect[0 : 7] b_vect[15 -: 8] // == b_vect[8 :15] for(i=0;i dword[7:0] (i=1) => dword[15:8] (i=2) => dword[23:16] (i=3) => dword[31:24] a_vect[x +: y] => [ x + y -1 : x ] a_vect[x -: y] => [ x : x - y + 1 ] 2016. 5. 20.
xilinx - Implementation time : Global iteration xilinx Implemetation 시, Global Iteration time 이 가장길다. Clock 단에 (* clock_buffer_type="BUFR" *) 을 주면, Implementation시, 감소 효과를 볼수 있다. BUFR = Regional Clock Buffer 기능. // BUFR : In order to incorporate this function into the design, // Verilog : the following instance declaration needs to be placed // instance : in the body of the design code. The instance name // declaration : (BUFR_inst) and/or th.. 2016. 5. 2.
음악대장 - 일상으로의 초대 고음질 (복면가왕) 음악대장 - 일상으로의 초대 고음질 (복면가왕) 광고 클릭하는 센스~ 2016. 4. 25.
Centos - changing partitions no space on the device 문제 해결. df -h Filesystem Size Used Avail Use% Mounted on /dev/mapper/VolGroup-lv_root 50G 35G 13G 75% / tmpfs 907M 0 907M 0% /dev/shm /dev/sde1 485M 125M 336M 28% /boot /dev/mapper/VolGroup-lv_home 130G 201M 124G 1% /home fuser -m /home (/home에 해당하는 경로) umount /home (해당경로) 아래 광고 click해주는 센스~ fsck -f /dev/mapper/VolGroup-lv_home (검사) lvresize -r -L100G /dev/mapper/VolGroup-l.. 2016. 4. 22.
LIST