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.
関数定義内で $display を使用しようとすると、Bluespec が文句を言います。
ルール定義内でのみ許可されます。
関数内で変数名を表示する方法はありますか?
ActionValue# を使用している可能性があると思いますが、正しい構文を取得できません。また、オンラインで例を見つけることもできません。
ありがとう
1 つの正しい構文は -
function ActionValue#(rtype) func(...) = actionvalue do something; $display(...); return val; endactionvalue;