blob: d12e627d44bf769f8fe46cf019255248cf37df4c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// See LICENSE for license details.
package chisel.compatibility
import chisel._
@deprecated("FileSystemUtilities doesn't exist in chisel3", "3.0.0")
trait FileSystemUtilities {
def createOutputFile(name: String): java.io.FileWriter = {
new java.io.FileWriter(Driver.targetDir + "/" + name)
}
}
|