Created
November 29, 2015 12:41
-
-
Save zeptometer/f53a19f9321813bbfdc1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| sbt 'run --backend c --compile --test --genHarness --targetDir build --noCombLoop' | |
| [info] Set current project to sdramtest (in build file:/home/zeptometer/programs/AquaCore/SDRAMTest/) | |
| [info] Compiling 1 Scala source to /home/zeptometer/programs/AquaCore/SDRAMTest/target/scala-2.11/classes... | |
| [error] /home/zeptometer/programs/AquaCore/SDRAMTest/src/main/scala/SdramTest.scala:8: not found: type UartIO | |
| [error] val uart = new UartIO | |
| [error] ^ | |
| [error] /home/zeptometer/programs/AquaCore/SDRAMTest/src/main/scala/SdramTest.scala:9: not found: type SdramIO | |
| [error] val sdram = new SdramIO | |
| [error] ^ | |
| [error] /home/zeptometer/programs/AquaCore/SDRAMTest/src/main/scala/SdramTest.scala:118: not found: type SdramPeripheral | |
| [error] val sdram = new SdramPeripheral | |
| [error] ^ | |
| [error] /home/zeptometer/programs/AquaCore/SDRAMTest/src/main/scala/SdramTest.scala:119: not found: type UartPeripheral | |
| [error] val uart = new UartPeripheral | |
| [error] ^ | |
| [error] /home/zeptometer/programs/AquaCore/SDRAMTest/src/main/scala/SdramTest.scala:122: not found: type Sdram | |
| [error] val sdram = Module(new Sdram( | |
| [error] ^ | |
| [error] /home/zeptometer/programs/AquaCore/SDRAMTest/src/main/scala/SdramTest.scala:123: not found: value frequency | |
| [error] frequency = 143, | |
| [error] ^ | |
| [error] /home/zeptometer/programs/AquaCore/SDRAMTest/src/main/scala/SdramTest.scala:124: not found: value casLatency | |
| [error] casLatency = 3, | |
| [error] ^ | |
| [error] /home/zeptometer/programs/AquaCore/SDRAMTest/src/main/scala/SdramTest.scala:125: not found: value burstLength | |
| [error] burstLength = 8, | |
| [error] ^ | |
| [error] /home/zeptometer/programs/AquaCore/SDRAMTest/src/main/scala/SdramTest.scala:126: not found: value interleaved | |
| [error] interleaved = true, | |
| [error] ^ | |
| [error] /home/zeptometer/programs/AquaCore/SDRAMTest/src/main/scala/SdramTest.scala:127: not found: value tPowerUp | |
| [error] tPowerUp = 100, | |
| [error] ^ | |
| [error] /home/zeptometer/programs/AquaCore/SDRAMTest/src/main/scala/SdramTest.scala:128: not found: value tREF | |
| [error] tREF = 64, | |
| [error] ^ | |
| [error] /home/zeptometer/programs/AquaCore/SDRAMTest/src/main/scala/SdramTest.scala:129: not found: value tRCD | |
| [error] tRCD = 15, | |
| [error] ^ | |
| [error] /home/zeptometer/programs/AquaCore/SDRAMTest/src/main/scala/SdramTest.scala:130: not found: value tRAS | |
| [error] tRAS = 37, | |
| [error] ^ | |
| [error] /home/zeptometer/programs/AquaCore/SDRAMTest/src/main/scala/SdramTest.scala:131: not found: value tDPL | |
| [error] tDPL = 14, | |
| [error] ^ | |
| [error] /home/zeptometer/programs/AquaCore/SDRAMTest/src/main/scala/SdramTest.scala:132: not found: value tRP | |
| [error] tRP = 15, | |
| [error] ^ | |
| [error] /home/zeptometer/programs/AquaCore/SDRAMTest/src/main/scala/SdramTest.scala:133: not found: value tRC | |
| [error] tRC = 60, | |
| [error] ^ | |
| [error] /home/zeptometer/programs/AquaCore/SDRAMTest/src/main/scala/SdramTest.scala:134: not found: value tMRD | |
| [error] tMRD = 14 | |
| [error] ^ | |
| [error] /home/zeptometer/programs/AquaCore/SDRAMTest/src/main/scala/SdramTest.scala:148: not found: type DummySdram | |
| [error] val sdram = Module(new DummySdram(validWidth = 16, | |
| [error] ^ | |
| [error] /home/zeptometer/programs/AquaCore/SDRAMTest/src/main/scala/SdramTest.scala:148: not found: value validWidth | |
| [error] val sdram = Module(new DummySdram(validWidth = 16, | |
| [error] ^ | |
| [error] /home/zeptometer/programs/AquaCore/SDRAMTest/src/main/scala/SdramTest.scala:149: not found: value burstLength | |
| [error] burstLength = 16, | |
| [error] ^ | |
| [error] /home/zeptometer/programs/AquaCore/SDRAMTest/src/main/scala/SdramTest.scala:150: not found: value casLatency | |
| [error] casLatency = 3)) | |
| [error] ^ | |
| [error] /home/zeptometer/programs/AquaCore/SDRAMTest/src/main/scala/SdramTest.scala:151: not found: type DummyUart | |
| [error] val uart = Module(new DummyUart(Array())) | |
| [error] ^ | |
| [error] 22 errors found | |
| [error] (root/compile:compileIncremental) Compilation failed | |
| [error] Total time: 4 s, completed Nov 29, 2015 12:39:30 PM | |
| Makefile:2: recipe for target 'test' failed | |
| make: *** [test] Error 1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment