I\'m wanting to read hex numbers from a text file into an unsigned integer so that I can execute Machine instructions. It\'s just a simulation type thing that looks inside
In this case, all of your input is upper case hex while you are trying to read lower case hex.
To fix it, change %x to %X.
%x
%X