mirror of
https://github.com/nArnoSNES/tcc-65816.git
synced 2025-02-20 04:28:56 +00:00
15 lines
137 B
C
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);
|
|
}
|