Forum Discussion
Altera_Forum
Honored Contributor
13 years agoI finally figured out how to attach the signal tap to the pins of the component. What I figured out is that the input signals are always 0. They never go to 1.
EDIT: The signal tap fixed it self: I will attach an image of the output. I am sorry but it has to be in a zip format Here is the code I compiled for it:
# include <stdio.h>
void main()
{
int* memory;
memory = 0x882040;
while (1)
{
*memory = -5000;
}
}