Esempio n. 1
0
void deco74_decrypt_gfx(running_machine &machine, const char *tag)
{
	deco_decrypt(machine,tag,deco74_xor_table,deco74_address_table,deco74_swap_table, 0);
}
Esempio n. 2
0
void deco56_remap_gfx(running_machine &machine, const char *tag)
{
	// Apply address remap, but not XOR/shift
	deco_decrypt(machine,tag,deco56_xor_table,deco56_address_table,deco56_swap_table, 1);
}
Esempio n. 3
0
void deco74_decrypt_gfx(running_machine &machine, std::string tag)
{
	deco_decrypt(machine,tag,deco74_xor_table,deco74_address_table,deco74_swap_table, 0);
}