Forum Discussion
3 Replies
- Altera_Forum
Honored Contributor
Nios or any other cpu always works with binary values. Other numeric bases makes sense only for formatted input/output.
In this case the common stdio printf/scanf functions can do what you are asking for: printf("%d", v) : v in decimal format printf("%x", v) : v in hex format printf("%o", v) : v in octal format - Altera_Forum
Honored Contributor
I tend to avoid all the scanf() family of functions, they are very difficult to use safely.
One of the strtoul() family is generally better for converting ascii input strings. - Altera_Forum
Honored Contributor
do take note if the convertion that to hex 16 bit or 32 bit based hex value.