From 0ec65198bc90e40c680a1404a8db51e5d2dc0cc4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Sintzoff?= <61976467+ASintzoff@users.noreply.github.com> Date: Fri, 31 Jan 2025 05:44:24 +0100 Subject: [PATCH] doc: fix description of signals in instr_scan.sv (#2752) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit as use in design document (automatically generated part) Signed-off-by: André Sintzoff --- core/frontend/instr_scan.sv | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/frontend/instr_scan.sv b/core/frontend/instr_scan.sv index 6ec09543d9..69e45ff69e 100644 --- a/core/frontend/instr_scan.sv +++ b/core/frontend/instr_scan.sv @@ -30,7 +30,7 @@ module instr_scan #( output logic rvi_jalr_o, // Unconditional jump instruction - FRONTEND output logic rvi_jump_o, - // Instruction immediat - FRONTEND + // Instruction immediate - FRONTEND output logic [CVA6Cfg.VLEN-1:0] rvi_imm_o, // Branch compressed instruction - FRONTEND output logic rvc_branch_o, @@ -44,7 +44,7 @@ module instr_scan #( output logic rvc_jalr_o, // JAL compressed instruction - FRONTEND output logic rvc_call_o, - // Instruction compressed immediat - FRONTEND + // Instruction compressed immediate - FRONTEND output logic [CVA6Cfg.VLEN-1:0] rvc_imm_o );