Is LOTR big or little endian? #45
-
Is LOTR big or little endian? Both options are fine from software perspective, but it should be documented |
Beta Was this translation helpful? Give feedback.
Answered by
amichai-bd
May 16, 2021
Replies: 1 comment
-
Little endian. Data[100] = 8'hEF |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
DL8
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Little endian.
Example:
Data[100] = 32'hDEAD_BEEF
Data[100] = 8'hEF
Data[101] = 8'hBE
Data[102] = 8'hAD
Data[103] = 8'hDE