blob: d9f6e4b0397f0be3da6ca1e52348c7630fe8169a (
plain)
1
2
3
4
5
6
7
8
9
10
|
// See LICENSE for license details.
package chisel3.compatibility
import chisel3.core._
@deprecated("debug doesn't do anything in Chisel3 as no pruning happens in the frontend", "chisel3")
object debug { // scalastyle:ignore object.name
def apply (arg: Data): Data = arg
}
|