From e5e030fc6de5ee70bfa5b820461df950cd5460f0 Mon Sep 17 00:00:00 2001 From: YuzukiTsuru Date: Fri, 23 Feb 2024 20:04:08 +0800 Subject: [PATCH] [docs] fix rv64 using b huh --- docs/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/README.md b/docs/README.md index b9647e3a..d57635f6 100644 --- a/docs/README.md +++ b/docs/README.md @@ -285,7 +285,7 @@ Based on this explanation, the highest 8 bits of the instruction encoding are: 0 The jump_instruction field stores a jump instruction: (B BACK_OF_boot_file_head). When this jump instruction is executed, the program will jump to the first instruction after the boot_file_head. -The B instruction encoding in ARM instructions is as follows: +The Unconditional Jumps instruction encoding in RISC-V instructions is as follows: ```c #define BROM_FILE_HEAD_SIZE (sizeof(boot_file_head_t) & 0x00FFFFF)