From dcd40c6be702c274770a4d1fea488f152fa3fcf5 Mon Sep 17 00:00:00 2001 From: David Harris Date: Tue, 16 Jan 2024 10:27:31 -0800 Subject: [PATCH] Fixed spelling of output --- src/fpu/fcvt.sv | 2 +- src/fpu/postproc/postprocess.sv | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/fpu/fcvt.sv b/src/fpu/fcvt.sv index d721dbc2f..ad767d2ef 100644 --- a/src/fpu/fcvt.sv +++ b/src/fpu/fcvt.sv @@ -69,7 +69,7 @@ module fcvt import cvw::*; #(parameter cvw_t P) ( assign Int64 = OpCtrl[1]; assign IntToFp = OpCtrl[2]; - // choose the ouptut format depending on the opperation + // choose the output format depending on the opperation // - fp -> fp: OpCtrl contains the precision of the output // - int -> fp: Fmt contains the precision of the output if (P.FPSIZES == 2) diff --git a/src/fpu/postproc/postprocess.sv b/src/fpu/postproc/postprocess.sv index ba897a5fd..c2de8644e 100644 --- a/src/fpu/postproc/postprocess.sv +++ b/src/fpu/postproc/postprocess.sv @@ -127,7 +127,7 @@ module postprocess import cvw::*; #(parameter cvw_t P) ( assign InfIn = XInf|YInf|ZInf; assign NaNIn = XNaN|YNaN|ZNaN; - // choose the ouptut format depending on the opperation + // choose the output format depending on the opperation // - fp -> fp: OpCtrl contains the precision of the output // - otherwise: Fmt contains the precision of the output if (P.FPSIZES == 2)