noPrefix

chisel3.experimental.noPrefix
object noPrefix

Use to eliminate any existing prefixes within the provided scope.

Attributes

Example
val x1 = noPrefix {
 // Anything generated here will not be prefixed by anything outside this scope
}
Source
prefix.scala
Graph
Supertypes
class Object
trait Matchable
class Any
Self type
noPrefix.type

Members list

Value members

Concrete methods

def apply[T](f: => T): T

Use to clear existing prefixes so no signals within the scope are prefixed by signals/names outside the scope

Use to clear existing prefixes so no signals within the scope are prefixed by signals/names outside the scope

Type parameters

T

The return type of the provided function

Value parameters

f

a function for which any generated components are given the prefix

Attributes

Returns

The return value of the provided function

Source
prefix.scala