Responding to "torsi" on Thread " In Work: mlab / mcc variable usage problems."

First: The printf() support on the Vex is limited it what it can handle for data values… Float and Double (Float) are not supported.

Second: IIRC you would need to modify your
printf() formatting for long ints, by adding the ‘l’ to your ‘%x’ format.

Third: printf() does not expect the ‘&’ in front of each variable. You are going to be “passing” the Memory Location of each of your variables to the printf() function, not the Value of each of your variables.