ASCII Table by *yuko*

\x06_>\x7f\x90\xff>\x0f\xa0>
(\x02> \xff\x10\xf0v

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

Disassemble:

	ORG	00000H

	LD B,05FH		;0000	06 5F 	. _ 
	LD A,07FH		;0002	3E 7F 	>  
	SUB B			;0004	90 	. 
	RST 38H			;0005	FF 	. 
	LD A,00FH		;0006	3E 0F 	> . 
	AND B			;0008	A0 	. 
	LD A,00AH		;0009	3E 0A 	> . 
	JR Z,$+4		;000B	28 02 	( . 
	LD A,020H		;000D	3E 20 	>   
	RST 38H			;000F	FF 	. 
	DJNZ $-14		;0010	10 F0 	. . 
	HALT			;0012	76 	V 

download

return to the top page