2009-07-27 03:16 AM
How can i read the condition code register?
2011-05-17 06:04 AM
i use the following instruction, but cann't get the value of CC(condition code register)
ld a, cc; //error in compile ld a, $7f09; //the value of A is 0x00 how can i get the value of cc?2011-05-17 06:04 AM
push cc
pop a regards