Forum Discussion
Altera_Forum
Honored Contributor
9 years agoWith NIOS, you do an ordinary write with a pointer. Something like:
uint32_t *on_chip_address = // address you want to use
*on_chip_address = 42; // for example
With NIOS, you do an ordinary write with a pointer. Something like:
uint32_t *on_chip_address = // address you want to use
*on_chip_address = 42; // for example