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)