为什么这个编码会这样?

Why is this coding behaving this way?

以下代码打印 3、5、6。你能帮我理解为什么(以及为什么不是 33、35、36 吗?)

                  global_start
                  section .data
00000000 03000000         x: dd 3

00000004 8B0D[00000000]   _start: mov ecx, [x]
0000000A 000D[16000000]   r: add byte [l+6], cl
00000010 C605[00000000]30 l: mov byte [x], 48
00000017 51               push ecx
00000018 B804000000       mov eax, 4 ; For "write" system call
0000001D BB01000000       mov ebx, 1 ; to standard output
00000022 B9[000000000]    mov ecx, x ; "buffer"
00000027 BA01000000       mov edx, 1 ; byte count
0000002C CD80             int 0x80
0000002E 59               pop ecx
0000002F E209             loop r, ecx ; decrement ecx, jump relative if not zero
00000031 BB00000000       mov ebx, 0
00000036 B801000000       mov eax, 1 ; for "exit" system call
0000003B CD80             int 0x80

此代码是用汇编 8086 x32 位编写的(NASM 列表)。 RAM使用小印度。

我想通了。该代码确实在 x 中存储了 33、35、36。但是,当 "write" 系统调用将 x 打印到标准输出时,它会打印这些值表示的字符(以 ascii 格式)。由于 HEX 中的 33、35、36 分别是字符“3”、“5”、“6”,因此这就是打印到标准输出的内容。