/* * (C) Copyright 1992, ..., 2004 the "DOSEMU-Development-Team". * * for details see file COPYING in the DOSEMU distribution */ #include __asm__(".org 0x110000"); #ifdef __linux__ int main(int argc, char **argv) { /* just run this function */ int emulate(int, char **); emulate(argc, argv); } #endif