X-Git-Url: https://git.stderr.nl/gitweb?a=blobdiff_plain;f=Translator.hs;h=7e66b181a2f72aef2d22c33e470d645c486fa1d8;hb=7a5b4eb318626f327dd6b0d69e99a8247f56399c;hp=6b96ebca98a04566fb07e0adaeec609fc94a5d77;hpb=9913c8098b3f42e404ee1b76c2ccd47f15769c64;p=matthijs%2Fmaster-project%2Fc%CE%BBash.git diff --git a/Translator.hs b/Translator.hs index 6b96ebc..7e66b18 100644 --- a/Translator.hs +++ b/Translator.hs @@ -69,9 +69,15 @@ main = -- Create entities and architectures for them mapM processBind binds modFuncs nameFlatFunction + modFuncs VHDL.createEntity + modFuncs VHDL.createArchitecture + -- Extract the library units generated from all the functions in the + -- session. + funcs <- getFuncs + let units = concat $ map VHDL.getLibraryUnits funcs return $ AST.DesignFile [] - [] + units findBind :: [CoreBind] -> String -> Maybe CoreBind findBind binds lookfor = @@ -181,7 +187,7 @@ nameFlatFunction hsfunc fdata = -- Name the signals in all other functions Just flatfunc -> let s = sigs flatfunc in - let s' = map (\(id, (SignalInfo Nothing)) -> (id, SignalInfo (Just $ "sig_" ++ (show id)))) s in + let s' = map (\(id, (SignalInfo Nothing ty)) -> (id, SignalInfo (Just $ "sig_" ++ (show id)) ty)) s in let flatfunc' = flatfunc { sigs = s' } in fdata { flatFunc = Just flatfunc' }