comparison vdp.c @ 1982:6b9871d3d70d

Fix regression in Mode 4 support caused by address/cd latch changes
author Michael Pavone <pavone@retrodev.com>
date Fri, 15 May 2020 23:39:15 -0700
parents 80920c21bb52
children 00873afe1fe9
comparison
equal deleted inserted replaced
1981:3537514ea206 1982:6b9871d3d70d
3785 context->flags |= FLAG_PENDING; 3785 context->flags |= FLAG_PENDING;
3786 //Should these be taken care of here or after the second write? 3786 //Should these be taken care of here or after the second write?
3787 //context->flags &= ~FLAG_READ_FETCHED; 3787 //context->flags &= ~FLAG_READ_FETCHED;
3788 //context->flags2 &= ~FLAG2_READ_PENDING; 3788 //context->flags2 &= ~FLAG2_READ_PENDING;
3789 } else { 3789 } else {
3790 clear_pending(context);
3790 context->flags &= ~FLAG_READ_FETCHED; 3791 context->flags &= ~FLAG_READ_FETCHED;
3791 context->flags2 &= ~FLAG2_READ_PENDING; 3792 context->flags2 &= ~FLAG2_READ_PENDING;
3792 } 3793 }
3793 } 3794 }
3794 return 0; 3795 return 0;