PowerPC Embedded Application Binary Interface (EABI)初探
Posted panrui
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PowerPC Embedded Application Binary Interface (EABI)初探相关的知识,希望对你有一定的参考价值。
C的源代码中定义一下结构体。
typedef struct {
UINT8 RecType;
UINT8 NumBytes;
UINT32 LoadAddr;
UINT8 Data[MaxSRecLen];
} SRecDataRec;
发现,在内存中是按照以下方式排列的:
可见,struct中间可能是留有空隙的。这样的对齐方式是符合标准的。
以上是关于PowerPC Embedded Application Binary Interface (EABI)初探的主要内容,如果未能解决你的问题,请参考以下文章