본문 바로가기

전체 글102

[기초 개념] Verilog 파라미터, 상수 총 정리 Verilog는 module로 시작해서 endmodule로 끝난다. Verilog에게 module은 C언어의 function과 유사하다. 포트 신호의 방향 input: 외부에서 모듈로 입력되는 신호의 방향을 의미 output: 모듈 내부에서 외부로 출력되는 신호의 뱡향을 의미 inout: 모듈의 외부와 내부의 양쪽 방향으로 소통이 가능한 신호의 방향을 의미 포트 신호의 타입 Wire (상위 개념이 net): - represent physical connection - 값 전달 위주의 전기적인 연결선의 역할 Reg (상위 개념이 variable): - represent abstract storage element (Register) - 값을 기억하는 소프트웨어의 변수와 유사한 역할 Verilog data.. 2021. 4. 11.
[기초 개념] Verilog, SystemVerilog 란? Verilog 란? - Verilog is not a software language. - Verilog is a Hardware Description Language(HDL). - RTL coding - ASIC or FPGA의 논리 회로를 설계하기 위한 언어. - 논리 회로를 설계하는 것이므로 Timing 속도, 소모 전력 등의 성능 구현하는 것이 주가 됨. SystemVerilog 란? - Testbench(검증용 코드)에 사용되는 언어. - Verilog의 문법보다 좀 더 Software language에 가까움. ASIC 설계에서 중요한 요소 2가지 1) 얼마나 빠른 Timing으로 정확하게 수행하는 가? 2) 얼마나 Low power로 수행하는 가? Running the ASIC develop.. 2021. 4. 11.
[기초 개념] ASIC 반도체 란? - 디지털 로직 개발자가 하는 일 ASIC 비메모리 반도체에 관하여 1) 주문형 반도체 ASIC: - Cell-based 방식 - Simulator: Cadence사의 NC-simulator - 사용 예시: DRAM 설계 2) 산업용 카메라 ASIC: - FPGA 방식 - Simulator: Xilinx사의 Vivado - 사용 예시: 센서 이미지 처리 ASIC 설계 및 생산 흐름 크게 4단계로 이루어진다. 1) Verilog로 설계 (Front-end) 2) 각종 gate, or 등으로 동작 회로 구성 (Front-end) 3) 실제 반도체 칩에 형상화함 (Back-end) 4) Wafer에 공정 Front-end & Back-end 개발자의 설계 부분 총 4단계로, 1) 칩의 동작 방식을 알고리즘으로 구성 2) RTL 코딩으로 R에 .. 2021. 4. 11.
[C++/MFC] String to int/float/double 변환 String ▶ int stoi 사용 std::string strRubber = "Good afternoon"; int nRubber = stoi(strRubber); String ▶ float stof 사용 std::string strRubber = "Good afternoon"; float fRubber = stof(strRubber); String ▶ double stod 사용 std::string strRubber = "Good afternoon"; double dRubber = stod(strRubber); 2021. 4. 10.
[C++/MFC] int to String 변환 int ▶ String to_string 사용 int nRubber = 50; std::string strRubber = to_string(nRubber); 2021. 4. 10.
[C++/MFC] String to CString 변환 String ▶ CString c_str() 사용 std::string stdStr = "String"; CString cStr = stdStr.c_str(); 2021. 4. 10.
[C++/MFC] CString to String 변환 CString ▶ String CT2CA 사용 CString cStr = L"String"; std::string str = std::string(CT2CA(cStr)); 2021. 4. 10.
미국 분기 및 연간 보고서(Report) 보는 법 공시 보고서(Report) 사이트 아래 사설 사이트를 접속해 기업을 검색하고 목차의 '10-Q'와 '10-K'를 누르면 SEC 홈페이지로 연계가 된다. SEC는 Securities and Exchange Commission의 약자로 한국의 Dart와 유사한 정부 기관 사이트 이다. 여기에 기업은 분기별로 혹은 연간별로 공시 보고서를 공유해야 한다. https://stockrow.com/ https://stockrow.com/ stockrow.com 그럼 아래와 같은 사이트로 이동하고 공시 보고서의 htm을 클릭한다. 미국 연간 보고서 분석하기 이제 아래와 같은 보고서를 열람할 수 있다. Products and Services performance 처음 기업 보고서를 읽을 땐 해당 회사의 주요 매출원이 무.. 2021. 4. 4.