From c6bd684119f44422c7195b7c22a3d55f5389d10a Mon Sep 17 00:00:00 2001 From: Palmer Dabbelt Date: Mon, 2 Nov 2015 11:37:29 -0800 Subject: Remove "generates {,no} logic" comments At least one of these is incorrect. --- src/main/scala/Chisel/Aggregate.scala | 2 -- 1 file changed, 2 deletions(-) (limited to 'src') diff --git a/src/main/scala/Chisel/Aggregate.scala b/src/main/scala/Chisel/Aggregate.scala index c17644b4..3d419934 100644 --- a/src/main/scala/Chisel/Aggregate.scala +++ b/src/main/scala/Chisel/Aggregate.scala @@ -128,7 +128,6 @@ sealed class Vec[T <: Data] private (gen: => T, val length: Int) def := (that: Vec[T]): Unit = this connect that /** Creates a dynamically indexed read or write accessor into the array. - * Generates logic (likely some kind of multiplexer). */ def apply(idx: UInt): T = { val x = gen @@ -137,7 +136,6 @@ sealed class Vec[T <: Data] private (gen: => T, val length: Int) } /** Creates a statically indexed read or write accessor into the array. - * Generates no logic. */ def apply(idx: Int): T = self(idx) -- cgit v1.2.3