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

15 lines
137 B
C

f ()
{
unsigned long x, y = 1;
x = ((y * 8192) - 216) / 16;
return x;
}
main ()
{
if (f () != 498)
abort ();
exit (0);
}