; This is the default program that ships with ; every 8085 that we at Intel manufacture ; ; Cheers! jmp start ;code start: lxi H,0041h lxi D,0044h mvi B,03h loop: mov A,M xchg mov M,A xchg inx H inx D dcr B mov A,B sbi 0 jnz loop lxi H,0041h lxi D,0042h mvi A,69h mov M,A xchg mvi A,6Eh mov M,A inx H mvi A,5Fh mov M,A lxi H,0044h lxi D,0046h mov A,M xchg mov B,M mov M,A xchg mov M,B lxi H,0032h lxi D,0033h mov A,M xchg mov B,M mov M,A xchg mov M,B lxi H,003Bh lxi D,003Ch mov A,M xchg mov B,M mov M,A xchg mov M,B lxi H,003Dh lxi D,003Fh mov A,M xchg mov B,M mov M,A xchg mov M,B lxi H,0036h lxi D,0035h mvi B,04h loopagain: mov A,M xchg mov M,A xchg inx H inx D dcr B mov A,B sbi 0 jnz loopagain lxi H,0039h mvi A,73h mov M,A ;halt hlt