Using Reference Model for HDL code Generation

1 回表示 (過去 30 日間)
Kamyar Khosravi
Kamyar Khosravi 2018 年 4 月 10 日
コメント済み: Kamyar Khosravi 2018 年 4 月 11 日
Hi,
Is there anyway to generate HDL code for a reference model . For example, let's say I have a subsystem that I would like to use across my design. There are currently two problems with repeating the same subsystem across the model. One is that the generated code outputs different Verilog files for each of the called subsystem. Second is that if I want to make a change to the subsystem, the change will not happen across the other subsystems. Is there a way to create a subsystem, that can be modified globally and at the same time generate only one Verilog file?
Many thanks, Kamyar

採用された回答

Kiran Kintali
Kiran Kintali 2018 年 4 月 10 日
Yes, you can use model reference block with HDLCoder to generate HDL code without creating duplicate copies.
  2 件のコメント
Kiran Kintali
Kiran Kintali 2018 年 4 月 10 日
hdlcoder_audiofiltering
Generate HDL from shipping example of an audio filter with left and right channels. It uses two atomic subsystems with identical content. HDLCoder recognizes this pattern and generates only one module and instantiates it twice.
Kamyar Khosravi
Kamyar Khosravi 2018 年 4 月 11 日
Thank you for the feedback I managed to do it successfully.

サインインしてコメントする。

その他の回答 (1 件)

Tim McBrayer
Tim McBrayer 2018 年 4 月 10 日
Mark each instance of the subsystem as atomic. When marked atomic, it will generate only one output file for all instances.
Secondly, you can place your subsystem in a library. When you use a library block, each copy refers back to the original library block. Changing the library block will cause every instance to have the same change.
  1 件のコメント
Kamyar Khosravi
Kamyar Khosravi 2018 年 4 月 11 日
Thank you for the feedback I managed to do it successfully. Creating a library is indeed very interesting feature. Thank you for the response

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeCode Generation and Deployment についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by