Yes by *yuko*

\xcd\x03\x80\xd8\xff>e\xff>s\xff> \xff\xcd\x03\x80\xc7v

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

Disassemble:

	ORG	00000H

	CALL 08003H		;0000	CD 03 80 	. . . 
	RET C			;0003	D8 	. 
	RST 38H			;0004	FF 	. 
	LD A,065H		;0005	3E 65 	> E 
	RST 38H			;0007	FF 	. 
	LD A,073H		;0008	3E 73 	> S 
	RST 38H			;000A	FF 	. 
	LD A,020H		;000B	3E 20 	>   
	RST 38H			;000D	FF 	. 
	CALL 08003H		;000E	CD 03 80 	. . . 
	RST 0			;0011	C7 	. 
	HALT			;0012	76 	V 

download

return to the top page