blob: 53329908bd7bdb7a70f6ee1e388ce3404bf13c79 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// SPDX-License-Identifier: Apache-2.0
package chisel3.internal.firrtl
import firrtl.{ir => fir}
private[chisel3] object Emitter {
def emit(circuit: Circuit): String = {
val fcircuit = Converter.convertLazily(circuit)
fir.Serializer.serialize(fcircuit)
}
}
|