From cc21e9cd9509563bc952d37294e08812a283ca9f Mon Sep 17 00:00:00 2001 From: Andrew Waterman Date: Thu, 17 Jan 2019 15:45:22 -0800 Subject: Make combinational-multiplier warning less vague --- chiselFrontend/src/main/scala/chisel3/core/Bits.scala | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'chiselFrontend/src/main/scala/chisel3') diff --git a/chiselFrontend/src/main/scala/chisel3/core/Bits.scala b/chiselFrontend/src/main/scala/chisel3/core/Bits.scala index 335eb7e4..4ba5aed4 100644 --- a/chiselFrontend/src/main/scala/chisel3/core/Bits.scala +++ b/chiselFrontend/src/main/scala/chisel3/core/Bits.scala @@ -475,9 +475,9 @@ sealed abstract class Bits(private[chisel3] val width: Width) extends Element wi * @define coll numeric-like type * @define numType hardware type * @define canHaveHighCost can result in significant cycle time and area costs - * @define canGenerateA This method can generate a - * @define singleCycleMul @note $canGenerateA single-cycle multiplier which $canHaveHighCost. - * @define singleCycleDiv @note $canGenerateA single-cycle divider which $canHaveHighCost. + * @define canGenerateA This method generates a + * @define singleCycleMul @note $canGenerateA fully combinational multiplier which $canHaveHighCost. + * @define singleCycleDiv @note $canGenerateA fully combinational divider which $canHaveHighCost. * @define maxWidth @note The width of the returned $numType is `max(width of this, width of that)`. * @define maxWidthPlusOne @note The width of the returned $numType is `max(width of this, width of that) + 1`. * @define sumWidth @note The width of the returned $numType is `width of this` + `width of that`. -- cgit v1.2.3