After years of not writing any assembly, I thought it would be fun to see if I could still do it. So I set out to write a simple parallax star field. The very first thing I'm trying to write, though, is slowly driving me insane—a simple wait for space key press... I have no idea why, but it keeps crashing.
This should work, right? It crashes both my real MSX (an F700D) and openMSX. Please help, I'm losing my mind here.
ORG #C000 KEYS: EQU #FBE5 LOOP: LD A,(KEYS+8) BIT 0,A JP NZ,LOOP RET
Login sesión o register para postear comentarios