英特尔 x86(小端)程序集中数组的单个双字如何存储为值 5?

How would an individual dword of an array in intel x86(little endian) assembly be stored for value 5?

我目前是一名大学生,我的教授在录制讲座时放大了镜头,所以我看不到他在写什么。我不确定如何存储“DWORD 5”,例如从位置 2000 开始:

我在想

2000:00000101

2001: 00000000

2002: 00000000

2003: 00000000

但我不确定是否可以。

2000: 00000000

2001: 00000000

2002: 00000000

2003: 00000101

如果有人能解释一下哪个是正确的,我将不胜感激。

x86 是小端,"[a] little-endian system, stores the least-significant byte at the smallest address".

所以,第一个。