如何將C結構的偏移量發送至彙編代碼? 例如將結構偏移屬性賦予彙編程序
在我的C代碼,我有
typedef struct
{
unsigned int a;
unsigned int b;
} CMyStruct;
我發送到ASM功能的CMyStruct結構的指針 讓想我的指針到R0
要訪問和b屬性我需要這樣做。
ldr r1, [r0, #0] // read a
ldr r2, [r0, #4] // read b
反正有沒有指定#0和#4作爲contant值? 喜歡的東西
ldr r1, [r0, CMyStruct.a] // read a
ldr r2, [r0, CMyStruct.b] // read b
感謝的 艾蒂安
難道你不能做像ASSUME r0:CMyStruct – Cyclonecode