Sign In

Don't have a Xilinx account yet?

  • Choose to receive important news and product information
  • Gain access to special content
  • Personalize your web experience on Xilinx.com

Create Account

Username

Password

Forgot your password?
XClose Panel
Xilinx Home
Reply
Visitor
raad
Posts: 5
Registered: ‎05-11-2012
0

TSK_TX_MEMORY_WRITE_64

Hello together,

 

I try to send a memory-write-message to my application using TSK_TX_MEMORY_WRITE_64.

The first 32 bits of the payload are trasmited correctly but not the rest ! Any idea how can I fix it ?

 

Regards

- Raad

 

 

PS. my code looks like this:

 

DATA_STORE[0] = 8'h01;    DATA_STORE[1] = 8'h02;    DATA_STORE[2] = 8'h03;    DATA_STORE[3] = 8'h04;
DATA_STORE[4] = 8'h05;    DATA_STORE[5] = 8'h06;    DATA_STORE[6] = 8'h07;    DATA_STORE[7] = 8'h08;

TSK_TX_MEMORY_WRITE_64(    DEFAULT_TAG, 

                                                               DEFAULT_TC, 10'd1,   

                                                               {BAR_INIT_P_BAR[ii+1][31:0], BAR_INIT_P_BAR[ii][31:0]},

                                                               4'h0, 4'h0, 1'b0

                                                          );

Visitor
raad
Posts: 5
Registered: ‎05-11-2012
0

Re: TSK_TX_MEMORY_WRITE_64

Ok, I'm really sorry for asking this question :/