URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-stable/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.target/] [xstormy16/] [sfr/] [15_clr_sfrw_bit_f.c] - Rev 816
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-options { -nostartfiles below100.o -Tbelow100.ld -O2 } } */ /* { dg-final { scan-assembler "mov.w r.,32532" } } */ #define SFR (*((volatile unsigned short*)0x7f14)) unsigned short *p = (unsigned short *) 0x7f14; void Do (void) { SFR &= ~0x8000; } int main (void) { *p = 0xedcb; Do (); return (*p == 0x6dcb) ? 0 : 1; }
Go to most recent revision | Compare with Previous | Blame | View Log