0

在我的课程笔记中,我得到了以下信息:

C:

thisthread.id = 4711;

汇编器:

.text
.align 2
movia r8,thisthread
movi r9,4711
stw r9,4(r8) # id after sp that takes 4 bytes

但是 sp 不占用 4 位吗?我认为偏移量是按位指定的,而不是按字节指定的。我弄错了吗?

4

1 回答 1

7

You are mistaken. The offset is indeed in bytes.

于 2012-09-04T06:05:14.157 回答