Skip to content

Commit 0949a3e

Browse files
committed
[fpu] minor comment edits
1 parent cb25a4f commit 0949a3e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

rtl/core/neorv32_cpu_cp_fpu.vhd

+2-2
Original file line numberDiff line numberDiff line change
@@ -342,7 +342,7 @@ begin
342342

343343
-- Input Operands: Check for subnormal numbers (flush to zero) ----------------------------
344344
-- -------------------------------------------------------------------------------------------
345-
-- [WARNING] Subnormal numbers are not supported yet and are "flushed to zero"! FIXME / TODO
345+
-- [WARNING] Subnormal numbers are not supported yet and are "flushed to zero"!
346346
-- rs1 --
347347
op_data(0)(31) <= rs1_i(31);
348348
op_data(0)(30 downto 23) <= rs1_i(30 downto 23);
@@ -781,7 +781,7 @@ begin
781781
multiplier.exp_res <= (others => '0');
782782
end if;
783783
else
784-
if (multiplier.start = '1') then -- FIXME / TODO remove buffer?
784+
if (multiplier.start = '1') then -- remove buffer?
785785
multiplier.opa <= unsigned('1' & fpu_operands.rs1(22 downto 0)); -- append hidden one
786786
multiplier.opb <= unsigned('1' & fpu_operands.rs2(22 downto 0)); -- append hidden one
787787
end if;

0 commit comments

Comments
 (0)