2012-04-24 03:22:36 +02:00
|
|
|
/*
|
2015-07-15 23:23:19 +02:00
|
|
|
Copyright 2015 Wolfgang Thaller.
|
2012-04-24 03:22:36 +02:00
|
|
|
|
2014-09-15 00:43:30 +02:00
|
|
|
This file is part of Retro68.
|
2012-04-24 03:22:36 +02:00
|
|
|
|
2014-09-15 00:43:30 +02:00
|
|
|
Retro68 is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
2012-04-24 03:22:36 +02:00
|
|
|
|
2014-09-15 00:43:30 +02:00
|
|
|
Retro68 is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
2012-04-24 03:22:36 +02:00
|
|
|
|
2015-07-15 23:23:19 +02:00
|
|
|
Under Section 7 of GPL version 3, you are granted additional
|
|
|
|
permissions described in the GCC Runtime Library Exception, version
|
|
|
|
3.1, as published by the Free Software Foundation.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License and
|
|
|
|
a copy of the GCC Runtime Library Exception along with this program;
|
|
|
|
see the files COPYING and COPYING.RUNTIME respectively. If not, see
|
|
|
|
<http://www.gnu.org/licenses/>.
|
2012-04-24 03:22:36 +02:00
|
|
|
*/
|
|
|
|
|
2012-04-03 10:57:27 +02:00
|
|
|
#include <stdint.h>
|
2014-09-29 21:43:48 +02:00
|
|
|
#include <stdlib.h>
|
2012-04-03 10:57:27 +02:00
|
|
|
|
2015-07-17 21:07:03 +02:00
|
|
|
#include "Retro68Runtime.h"
|
2012-03-29 10:29:41 +02:00
|
|
|
|
|
|
|
int main(int argc, char* argv[]);
|
|
|
|
|
|
|
|
void _start()
|
|
|
|
{
|
2015-07-17 21:07:03 +02:00
|
|
|
RETRO68_RELOCATE();
|
2015-08-29 20:11:53 +02:00
|
|
|
atexit(&Retro68CallDestructors);
|
2015-07-17 21:07:03 +02:00
|
|
|
Retro68CallConstructors();
|
2014-09-29 21:43:25 +02:00
|
|
|
|
2014-09-29 21:43:48 +02:00
|
|
|
int result;
|
2012-04-06 01:04:43 +02:00
|
|
|
{
|
|
|
|
char *argv[2] = { "./a.out", NULL };
|
2014-09-29 21:43:48 +02:00
|
|
|
result = main(1, argv);
|
2012-04-06 01:04:43 +02:00
|
|
|
}
|
2014-09-29 21:43:48 +02:00
|
|
|
exit(result);
|
2012-03-29 10:29:41 +02:00
|
|
|
}
|