To determine the largest of n numbers stored into t memory, write a program in assembly language.
A program of the largest of n numbers stored into t memory in assembly language is:
   MOV AX, 0000
   MOV SI, 0200
   MOV CX, [SI]
   BACK : INC SI
   INC SI
   CMP AX, [SI]
   JAE  GO
   MOV AX, [SI]
   GO: LOOP BACK
   MOV [0251], AX
   INT 3.