mirror of
https://github.com/stnolting/neorv32.git
synced 2025-04-19 11:55:05 -04:00
[fpu] minor comment edits
This commit is contained in:
parent
cb25a4f61f
commit
0949a3e90c
1 changed files with 2 additions and 2 deletions
|
@ -342,7 +342,7 @@ begin
|
|||
|
||||
-- Input Operands: Check for subnormal numbers (flush to zero) ----------------------------
|
||||
-- -------------------------------------------------------------------------------------------
|
||||
-- [WARNING] Subnormal numbers are not supported yet and are "flushed to zero"! FIXME / TODO
|
||||
-- [WARNING] Subnormal numbers are not supported yet and are "flushed to zero"!
|
||||
-- rs1 --
|
||||
op_data(0)(31) <= rs1_i(31);
|
||||
op_data(0)(30 downto 23) <= rs1_i(30 downto 23);
|
||||
|
@ -781,7 +781,7 @@ begin
|
|||
multiplier.exp_res <= (others => '0');
|
||||
end if;
|
||||
else
|
||||
if (multiplier.start = '1') then -- FIXME / TODO remove buffer?
|
||||
if (multiplier.start = '1') then -- remove buffer?
|
||||
multiplier.opa <= unsigned('1' & fpu_operands.rs1(22 downto 0)); -- append hidden one
|
||||
multiplier.opb <= unsigned('1' & fpu_operands.rs2(22 downto 0)); -- append hidden one
|
||||
end if;
|
||||
|
|
Loading…
Add table
Reference in a new issue