tcc-65816/test/tests/930527-1.c
2017-06-09 13:52:12 +02:00

12 lines
119 B
C

f (unsigned char x)
{
return (0x50 | (x >> 4)) ^ 0xff;
}
main ()
{
if (f (0) != 0xaf)
abort ();
exit (0);
}