I am working on a little endian system. Suppose I have the following data that I write to a sector in a disk:
$ hexdump file
04eb 0008 ...
$ cat file > /dev/sdb
Now when I read it back to memory, how will it look like in the memory and why?
I am working on a little endian system. Suppose I have the following data that I write to a sector in a disk:
$ hexdump file
04eb 0008 ...
$ cat file > /dev/sdb
Now when I read it back to memory, how will it look like in the memory and why?