fix TSY instruction in M4510 cpu (used in MESS)

This commit is contained in:
Roberto Zandona 2008-08-25 19:32:46 +00:00
parent 3d339e51f7
commit 58be08f089
2 changed files with 2 additions and 3 deletions

View File

@ -38,8 +38,7 @@
#undef NOP
#define NOP \
m4510.interrupt_inhibit = 0; \
/* SEI */
m4510.interrupt_inhibit = 0;
/* c65 docu says transfer of axyz to the mapper register
so no readback!? */

View File

@ -954,7 +954,7 @@
* TSY Transfer stack pointer to index y
***************************************************************/
#define TSY \
Y = SPL; \
Y = SPH; \
SET_NZ(Y)
/* 65ce02 ******************************************************