Jump to content

Part selection of ports


acc_sysC

Recommended Posts

Verilog code:

reg [7:0] B;

reg [15:0] ACC;

B[3:0] = ACC[3:0];

Equivalent systemC code:

This module is a stimulus module so I am declaring B as output port

sc_out<sc_bv<8> > B;

sc_bv<8> B_copy;

sc_bv<16> ACC;

B_copy.range(3,0) = ACC.range(3:0);

This is what I want to do but its not possible because range() cannot be used with ports. How should this be done in systemC?

B.range(3,0).write(B_copy);

I also don't want bits 4,5,6,7, to be overwritten with 0s

Please advice

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...