Recent content by Kevin19

  1. K

    6502

    I encountered a sort of dilemma I almost am done emulating the CPU and now i got the pull all flags off the stack And i actually divided the flags into a series of variables other than one byte And pushing 8 variables of int type onto the stack is going to mess it all up So i thought of...
  2. K

    CHIP8 DrawSprite

    I have been trying to figure this routine out for more than 40minutes now But i still do not get how it works void DrawSprite(int rx,int ry,int s) { int countery,counterx; char pixel; for(countery=0;countery<s;countery++) { pixel=memory[I+countery]...

Top