Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
VHDL で整数型オブジェクトを実数型に変換する一般的な変換関数はありますか? これはテストベンチ用であるため、合成可能性は問題になりません。
次のように整数を実数に変換できます。
signal i: integer; signal R: Real; ... R <= Real(i);