C语言中的 @ 符号是什么意思?

xtvtkd 2006-08-30 12:34:01
看到一段程序自动生成的嵌入式C语言代码,
在.c文件中是这样调用的,

/* PTASE: PTASE1=1,PTASE0=1 */
PTASE |= (unsigned char)0x03;

在.h文件中是这样定义的,先定义了一个结构体
/*** PTASE - Slew Rate Control Enable for Port A; 0x00001841 ***/
typedef union {
byte Byte;
struct {
byte PTASE0 :1; /* Slew Rate Control Enable for Port A Bit 0 */
byte PTASE1 :1; /* Slew Rate Control Enable for Port A Bit 1 */
byte PTASE2 :1; /* Slew Rate Control Enable for Port A Bit 2 */
byte PTASE3 :1; /* Slew Rate Control Enable for Port A Bit 3 */
byte PTASE4 :1; /* Slew Rate Control Enable for Port A Bit 4 */
byte PTASE5 :1; /* Slew Rate Control Enable for Port A Bit 5 */
byte PTASE6 :1; /* Slew Rate Control Enable for Port A Bit 6 */
byte PTASE7 :1; /* Slew Rate Control Enable for Port A Bit 7 */
} Bits;
} PTASESTR;
这下面一句中的@符合到底代表什么意思?应该是定义一个结构体变量,然后这个变量是指向0x00001841地址的
extern volatile PTASESTR _PTASE @0x00001841;
#define PTASE _PTASE.Byte

并宏定义了指向结构体变量

我想问的是@符合到底是什么意思?或哪里有@符号的详细解释,Thanks
...全文
3054 11 打赏 收藏 转发到动态 举报
写回复
用AI写文章
11 条回复
切换为时间正序
请发表友善的回复…
发表回复
0黄瓜0 2006-08-30
  • 打赏
  • 举报
回复
unknown character '0x40'
xtvtkd 2006-08-30
  • 打赏
  • 举报
回复
嗯,肯定是这意思,不过想知道关于@的详细说明,好像找到了,我用的是Codewarrior,手册上好像写了,我把贴上来


Global Variable Address Modifier (@address)
You can assign global variables to specific addresses with the global variable address modifier. These variables are called 'absolute variables'. They are useful for accessing memory mapped I/O ports and have the following syntax:

Declaration = <TypeSpec> <Declarator>[@<Address>|@"<Section>"]
[= <Initializer>];
<TypeSpec> is the type specifier, e.g., int, char

<Declarator> is the identifier of the global object, e.g., i, glob

<Address> is the absolute address of the object, e.g., 0xff04, 0x00+8

<Initializer> is the value to which the global variable is initialized.

A segment is created for each global object specified with an absolute address. This address must not be inside any address range in the SECTIONS entries of the link parameter file. Otherwise, there would be a linker error (overlapping segments). If the specified address has a size greater than that used for addressing the default data page, pointers pointing to this global variable must be "__far". An alternate way to assign global variables to specific addresses is (Listing 8.8).

Listing 8.8 Assigning global variables to specific addresses

#pragma DATA_SEG [__SHORT_SEG] <segment_name>
setting the PLACEMENT section in the linker parameter file. An older method of accomplishing this is shown in Listing 8.9.

Listing 8.9 Another means of assigning global variables to specific addresses

<segment_name> INTO READ_ONLY <Address> ;
Listing 8.10 is a correct and incorrect example of using the global variable address modifier and Listing 8.11 is a possible PRM file that corresponds with example Listing.

Listing 8.10 Using the global variable address modifier
//看这意思,就是把int型变量glob地址从0x0500开始,并把值10初始化时放在0x0500
int glob @0x0500 = 10; // OK, global variable "glob" is
// at 0x0500, initialized with 10
void g() @0x40c0; // error (the object is a function)

void f() {
int i @0x40cc; // error (the object is a local variable)
}
kangji 2006-08-30
  • 打赏
  • 举报
回复
是不是从某个地址开始的意思?
xtvtkd 2006-08-30
  • 打赏
  • 举报
回复
这个问题应该大多人不知道,不知道能不能加精下:)结贴了
qdhuxp 2006-08-30
  • 打赏
  • 举报
回复
接分
archim 2006-08-30
  • 打赏
  • 举报
回复
应该是编译器的扩展吧...
fytzzh 2006-08-30
  • 打赏
  • 举报
回复
长见识。
jixingzhong 2006-08-30
  • 打赏
  • 举报
回复
也可以说是标准的 ...
jixingzhong 2006-08-30
  • 打赏
  • 举报
回复
底层的东西 ...
adintr 2006-08-30
  • 打赏
  • 举报
回复
不是标准的吧
xtvtkd 2006-08-30
  • 打赏
  • 举报
回复
@符号看来还是挺管用的呀,特别是嵌入式开发时,呵呵,下午结贴,准备抢分呀..

69,371

社区成员

发帖
与我相关
我的任务
社区描述
C语言相关问题讨论
社区管理员
  • C语言
  • 花神庙码农
  • 架构师李肯
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧