Ejemplo n.º 1
0
/*
 * Install the server
 */
void uaeexe_install (void)
{
	uaecptr loop;

	if (!uae_boot_rom)
		return;
	loop = here ();
	org (UAEEXE_ORG);
	calltrap (deftrapres (uaeexe_server, 0, _T("uaeexe_server")));
	dw (RTS);
	org (loop);
}
Ejemplo n.º 2
0
void initparallel (void) {
    write_log("initparallel uae_boot_rom = %d\n", uae_boot_rom);
#ifdef AHI
    if (uae_boot_rom) {
        write_log("installing ahi_winuae\n");
        uaecptr a = here (); //this install the ahisound
        org (rtarea_base + 0xFFC0);
        calltrap (deftrapres (ahi_demux, 0, _T("ahi_winuae")));
        dw (RTS);
        org (a);
#ifdef AHI_V2
        init_ahi_v2 ();
#endif
    }
#endif
}