uj type1 [Computer Architecture] (7) Instruction Example RISC-V Instruction Formats은 아래와 같이 크게 6가지가 있다.1. R-Type2. I-Type3. S-Type4. SB-Type5. U-Type6. UJ-Type각 format을 알아보고, 어떻게 Instruction을 만들 수 있는 지 확인해보자. 1. R-Typeadd 명령어는 아래와 같이 구분될 수 있다.// add// func7 : 7'h00// rs2 : 5'h7;// rs1 : 5'h6;// func3 : 3'h0// rd : 5'h5;// opcode : 7'h33add x5, x6, x7 # a5 = a6 + a7이를 배치하면 아래와 같다. 2. I-Type// addi// imm : 12'hFCE, 12'b1111 1100 1110 -> +.. 2024. 4. 28. 이전 1 다음