목록전체 글 (13)
yc0325lee
* 미국 주요 경제 지표들- Trading Economics (All-in-one)https://ko.tradingeconomics.com/united-states/indicators; 통화 -> 달러인덱스(주요 기축통화들중 달러의 상대적인 가치); GDP성장률; 실업률; 물가상승률- 인베스팅닷컴에서 찾는 방법https://www.investing.com/ 에서 English로 검색실업률(U3,일반적) -> U.S. Unemployment RateGDP성장 -> U.S. Gross Domestic Product (GDP) QoQ실업률(U6,광의) -> U.S. U6 Unemployment Rate https://www.bls.gov/news.release/empsit.t15.htm물가상승률 -> U.S...
• 기판/후공정/팹리스PCB기판 : 이수페타시스, 대덕전자, 심텍, 티엘비, 코리아써키트, 해성디에스테스트 외주 : 두산테스나, 유니테스트패키징 : 하나마이크론, SFA반도체, 네패스, LB세미콘파운드리 : 삼성전자, DB하이텍세정/코팅 : 코미코IP(설계자산) : 퀄리타스반도체, 칩스앤미디어, 오픈엣지테크놀로지팹리스(설계) : 제주반도체, LX세미콘, 파두, 어보브반도체, 텔레칩스디자인하우스(설계서비스) : 가온칩스, 에이디테크놀로지, 에이직랜드, 코아시아 • 부품/소재테스트소켓 : 리노공업, ISC, 티에스이, 티에프이실리콘 부품 : 하나머티리얼즈, 티씨케이블랭크마스크 : 에스엔에스텍쿼츠부품 : 원익QnC포토레지스트(소재) : 동진쎄미켐, 켐트로스특수가스(소재) : 후성, 원익머트리얼즈식각액/전구체(..
Refereces ; https://blogofth-lee.tistory.com/394 Install GitHub Desktop desktop.github.com Git for All Platforms git-scm.com Configure tooling Configure user information for all local repositories ---> $home/.gitconfig file $ git config --global user.name "[name]" Sets the name you want attached to your commit transactions $ git config --global user.email "[email address]" Sets the email you wan..
# vim: ft=bash ts=4 sw=4 tw=78 expandtab # ---------------------------------------------------------------------------- # - file : readme.txt # - author : yc0325lee # - created : 2023-05-29 10:13:39 by yc032 # - modified : 2023-05-29 21:21:59 by yc032 # - description : # ---------------------------------------------------------------------------- # ------------------------------------- # - Git 명..
Useful or Excellent Utilities for Windows Windows Tips & Utils 2020-05-05 21:50:48 o 유용한 앱/프로그램 CPU-Z,TM5 반디집 WinDirStat 꿀뷰(반디소프트) 팟플레이어(카카오) 아크로니스 트루 이미지 Everything(Win) or oneSpot(Mac) CCleaner Chrome QuickLook Vim - www.vim.org Meld for Windows - https://meldmerge.org/
Everything - Fast File Search Program Windows Tips & Utils 2020-05-05 21:47:04 # homepage & download https://www.voidtools.com/ko-kr/ # Customized settings - 도구 -> 옵션 -> 일반 -> 윈도우 시작시 Everything 켜기 - 도구 -> 옵션 -> 일반 -> 검색 결과 -> 경로 칸을 더블클릭해서 폴더 열기(P) * Everything을 주로 사용할 경우 윈도우 기본 색인 기능 disable시켜서 resource 절약 가능 Run(Windows+R) -> Services.msc -> Windows Search -> Property -> Disabled & Stop 설정 -> ..
#ifndef DUT_H #define DUT_H #include "defines.h" SC_MODULE(dut) { sc_in_clk i_clk; sc_in i_resetn; sc_in i_valid; // input sc_out o_busy; sc_in i_coef[Y_SIZE][X_SIZE]; sc_in i_data[NDIM][NCHAN][Y_SIZE][X_SIZE]; sc_out o_valid; // output sc_in i_busy; sc_out o_data[NDIM][NCHAN]; u4_t count; // pipeline state variable SC_CTOR(dut) // constructor : count ( 8 ) { BEGIN; SC_CTHREAD(thread0, i_clk.pos..
// ------------------------------------ // single-bit module synchronizer_single ( input wire i_clk, input wire i_resetn, input wire i_d, output wire o_q ); reg sync1; reg sync2; always @( posedge i_clk or negedge i_resetn ) if( !i_resetn ) begin sync1
module Adder1 ( a, b, cin, cout, sum ); parameter n = 8; input wire [n-1:0] a, b; input wire cin; output wire [n-1:0] sum; output wire cout; assign {cout, sum} = a + b + cin; // synthesizable! endmodule module Mul4 ( a, b, p ); input [3:0] a, b; output [7:0] p; // product // form partial products wire [3:0] pp0 = a & {4{b[0]}}; // x1 wire [3:0] pp1 = a & {4{b[1]}}; // x2 wire [3:0] pp2 = a & {4{..