Palindromic Quine by shinh

\xc5~#\xb8 JvJ \xb8#~\xc5

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

Disassemble:

	ORG	00000H

	PUSH BC			;0000	C5 	. 
	LD A,(HL)			;0001	7E 	~ 
	INC HL			;0002	23 	# 
	CP B			;0003	B8 	. 
	JR NZ,$+76		;0004	20 4A 	  J 
	HALT			;0006	76 	V 
	LD C,D			;0007	4A 	J 
	JR NZ,$-70		;0008	20 B8 	  . 
	INC HL			;000A	23 	# 
	LD A,(HL)			;000B	7E 	~ 
	PUSH BC			;000C	C5 	. 

download

return to the top page