예제 #1
0
파일: interface.c 프로젝트: debrouxl/tiemu
/*
  Close the library by exiting the emulation engine
  (free ressources).
*/
int ti68k_exit(void)
{
    TRY(hw_exit());

    ticables_library_exit();
	tifiles_library_exit();
	ticalcs_library_exit();

	return 0;
}
예제 #2
0
파일: tilp_main.c 프로젝트: Jonimoose/tilp
int tilp_exit(void)
{
	tilp_device_close();

	ticables_library_exit();
	tifiles_library_exit();
	ticalcs_library_exit();

	return 0;
}