ASCII value even or odd by *yuko*

\xe5\xcd\x03\x808\x06\x86\xd0\x1f>O0v>E

Note that non-ascii characters in the above source code will be escaped (such as \x9f).

Disassemble:

	ORG	00000H

	PUSH HL			;0000	E5 	. 
	CALL 08003H		;0001	CD 03 80 	. . . 
	JR C,$+8		;0004	38 06 	8 . 
	ADD A,(HL)			;0006	86 	. 
	RET NC			;0007	D0 	. 
	RRA			;0008	1F 	. 
	LD A,04FH		;0009	3E 4F 	> O 
	JR NC,$+120		;000B	30 76 	0 V 
	LD A,045H		;000D	3E 45 	> E 

download

return to the top page