diff options
| author | Richard Lin | 2016-06-28 10:38:25 -0700 |
|---|---|---|
| committer | GitHub | 2016-06-28 10:38:25 -0700 |
| commit | bc3813ebd752646a92987c74136bb2adb476b687 (patch) | |
| tree | cc6e0e257f57d87e828a811e8c0c85d5780bb141 /src/main/scala/chisel3/compatibility/FileSystemUtilities.scala | |
| parent | 3eb51f8484ad21d8a39da1ab7b036f1bb3bbe102 (diff) | |
| parent | a367073eaad494e86883b319d3b06bd6e8f05a00 (diff) | |
Merge pull request #224 from ucb-bar/renamechisel3
renamechisel3 - "chisel" -> "chisel3"
Diffstat (limited to 'src/main/scala/chisel3/compatibility/FileSystemUtilities.scala')
| -rw-r--r-- | src/main/scala/chisel3/compatibility/FileSystemUtilities.scala | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/main/scala/chisel3/compatibility/FileSystemUtilities.scala b/src/main/scala/chisel3/compatibility/FileSystemUtilities.scala new file mode 100644 index 00000000..cd47c731 --- /dev/null +++ b/src/main/scala/chisel3/compatibility/FileSystemUtilities.scala @@ -0,0 +1,12 @@ +// See LICENSE for license details. + +package chisel3.compatibility + +import chisel3._ + +@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) + } +} |
