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/] [10_set_sfrb_bit_0.c] - Rev 329
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-options { -nostartfiles below100.o -Tbelow100.ld -O2 } } */ /* { dg-final { scan-assembler "set1 32532,#0" } } */ #define SFR (*((volatile unsigned char*)0x7f14)) unsigned char *p = (unsigned char *) 0x7f14; void Do (void) { SFR |= 0x01; } int main (void) { *p = 0x34; Do (); return (*p == 0x35) ? 0 : 1; }
Go to most recent revision | Compare with Previous | Blame | View Log