;--------------------------------------------------------------- ; ; This simple program tests the operation of the SITCOM85 ; It displays an arbitrary 8 character word on the 2 displays ; ; SITCOM is to be connected to COM1: or else you should change ; the lines containing the .CP and .TF directives. ; ;--------------------------------------------------------------- .CR 8085 .CP 1,9600,N,8,1 .TF COM1:,INT ;--------------------------------------------------------------- IZABELLA MVI A,'I' Say Izabella OUT 0C3H MVI A,'Z' OUT 0C2H MVI A,'A' OUT 0C1H MVI A,'B' OUT 0C0H MVI A,'E' OUT 0E3H MVI A,'L' OUT 0E2H MVI A,'L' OUT 0E1H MVI A,'A' OUT 0E0H .4EVER JMP .4EVER Endless loop ;--------------------------------------------------------------- .LI OFF