Exemple #1
0
static void cart_reset(running_machine *machine)
{
#ifdef MESS
	if (a800_cart_loaded)
		a800_setbank(machine, 1);
#endif /* MESS */
}
Exemple #2
0
static void machine_reset_atari_generic(int machine_type, int has_cart, int has_pia)
{
	atari = machine_type;

	gtia_reset();
	pokey_reset();
	if (has_pia)
		atari_pia_reset();
	antic_reset();

#ifdef MESS
	if (has_cart && a800_cart_loaded)
		a800_setbank(1);
#endif
}