我想使用fphdl包,以便在我的vhdl代码中将浮点数转换为整数。但是我甚至无法编译使用相关函数to_integer的赋值。我总是得到错误'子程序没有可行条目到整数'
该函数声明为
CollectionEditor
我试图像使用它一样:
function to_integer (
arg : UNRESOLVED_float; -- floating point input
constant round_style : round_type := float_round_style; -- rounding option
constant check_error : BOOLEAN := float_check_error) -- check for errors
return INTEGER;
但不起作用
成功使用此软件包的人的帮助?
答案 0 :(得分:0)