목록오블완 (6)
leehyeon-dv 님의 블로그

🔑http://localhost:8080/api/random에서 호출되는 apispring의 RestTemplate 라이브러리를 사용하여 API에 랜덤데이터를 가져오는 애플리케이션 빌드하기! 📌가이드 시작https://start.spring.io 로 이동해 애플리케이션에 필요한 모든 종속성을 가져오고 대부분의 설정을 대신 해줍니다Gradle을 이 가이드에서 사용할 예정입니다 (Maven을 사용하셔도 됩니다)또한, java를 사용합니다 Dependencies를 클릭해 Spring web을 선택해줍니다Generate를 클릭합니다file을 다운로드하고 압축을 풀어줍니다📌REST 소스 가져오기 프로젝트 설정을 완료하면 , RESTful 서비스를 사용하는 간단한 애플리케이션을 만들수 있습니다. 작업을 ..

🔑Table of ContentsLogic Design BasicsCombinatioanl Elements - 조합요소Sequential Elements -순차적요소Clocking Methodology -클러킹 방법론궁금한점📌Logic Design Basics정보는 binary(0,1)로 인코딩됨저전력 = 0, 고전력 = 1하나의 비트표현마다 한개의 선 필요멀티비트 데이터는 muti-wire bus로 인코딩됨조합요소데이터에 동작함output은 input의 조합state element (상태요소)정보를 저장🔦MIPS를 구현하는 데이터패스 요소조합소자상태소자📌 Combinational Elements(조합소자)데이터 값에 대해 연산을 수행하는 소자, 출력이 현재 입력에 의해서만..

🔑Table of ContentsFloating Point - 부동소수점Floating Point Standard - IEEE이론IEEE Floating-Point Format - IEEE계산방법,예제Single-Precision Range - 단정도 범위Double-Precision Range -배정도 범위Floating-Point Precision - 부동소수점의 정밀도Floating-Point ExampleDenormal Number - 비정규 숫자Infinities and NaNs - 무한대와 ..

🔑Table of ContentsMultiplication - 곱셈Multiplication Hardware (First version)Optimized Multiplier ( Sequencial version) - 최적화된 곱셈기Add and Right Shift Multiplier Hardware - 4bit 수들의 곱Faster Multiplier MIPS Multiplication궁금한점📌MultiplicationMultiplicand 왼쪽으로 시프트, Multiplier 오른쪽으로 시프트됨 -> 64비트 ALU(산술 논리 연산장치)를통해 연산된다product의 길이 = Multiplicand와 Multiplier의 길이를 합친 값(32bit * 32bit = 64..

🔑Table of Contents32-bit Constants - 32비트 상수, lui사용Branch Addressing - 분기대상 주소계산Jump Addressing - 32비트의 jump주소Target Addressing Example - MIPS계산(분기 명령어에서 오프셋사용)Branching Far Away - 이동할 주소가 먼경우 j사용Addressing Memory Summary - 궁금한점📌32-bit Constants대부분의 상수는 작은 크기임16비트 immediate로도 충분하다가끔 32-bit 상수가 쓰임 MIPS에서..

🔑Table of Contents6 Steps in Execution of a Producedure - 프로시저(함수) 실행의 6단계Register Usage Procedure Call Instructions Leaf Procedure 예제 None-Leaf Procedures - 프로시저 내에서 다른 프로시저 호출Local Data on the Stack - 프로그램에서 프로시저가 호출될때 메모리할당Memory Layout궁금한점📌6 Steps in Execution..