02-12-2013 12:59 PM
Where can i find sample codes?
I need to decode the i/o BUS in VHDL (my module connected to MCS out ports) but i can't understand how the address works in the MCS firmware, there is an IOWRITEWORD instruction but you dont pass the argument as a parameter.
Say i want to write X"AAA" to address X"10101010" how can i do it?
02-13-2013 04:45 AM
data = XIOModule_Initialize(&iomodule, XPAR_IOMODULE_0_DEVICE_ID);
data = XIOModule_Start(&iomodule);
XIOModule_IoWriteWord(&iomodule,inc_addr,inc_addr);
I am using chipscope but nothing happens on the IO_Addr_Strobe, IO_Write_Strobe or IO_ADDRESS
any help?