Original Post
Ive been trying to learn more about assembly lately and I ran into something I was curious about. Im used to C++ so I will talk about it in those terms. Lets say I have an array of unsigned chars (each a byte). But I wanted to figure out what 16bit value two of the chars would make? Do I like, shift the first byte into a 16bit int then shift the second byte into it, thus giving me the 16bit value??? I hope you guys understand what im asking! Thanks