Support multiple alternative case expressions.
[matthijs/master-project/cλash.git] / Translator.hs
index cf2fb966876c5ffd612d00360dfe772a4adf2110..98380606884c24ba953a07216d1bb788d1747d22 100644 (file)
@@ -43,9 +43,9 @@ import qualified VHDL
 
 main = do
   -- Load the module
-  core <- loadModule "Adders.hs"
+  core <- loadModule "Alu.hs"
   -- Translate to VHDL
-  vhdl <- moduleToVHDL core ["shifter"]
+  vhdl <- moduleToVHDL core ["salu"]
   -- Write VHDL to file
   writeVHDL vhdl "../vhdl/vhdl/output.vhdl"