diff options
| author | Andrew Waterman | 2016-01-11 14:58:48 -0800 |
|---|---|---|
| committer | Andrew Waterman | 2016-01-11 14:58:48 -0800 |
| commit | b7894073285ea0af5b66e53f3259b66aea9579cb (patch) | |
| tree | 0e413f1d5662e01dbda06098d11f29b1398e51a5 /src/main | |
| parent | a98dab0c5726434c2aaa457787ef32c380c5556d (diff) | |
| parent | e1ec4646e8551fdbe90e0ce2e957e455f0c8733d (diff) | |
Merge pull request #88 from ucb-bar/main
Add a dummy chiselMain
Diffstat (limited to 'src/main')
| -rw-r--r-- | src/main/scala/Chisel/Main.scala | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/main/scala/Chisel/Main.scala b/src/main/scala/Chisel/Main.scala new file mode 100644 index 00000000..23abc763 --- /dev/null +++ b/src/main/scala/Chisel/Main.scala @@ -0,0 +1,8 @@ +// See LICENSE for details + +package Chisel + +@deprecated("chiselMain doesn't exist in Chisel3", "3.0") object chiselMain { + def apply[T <: Module](args: Array[String], gen: () => T) = + Predef.assert(false) +} |
