Using MASM, TASM etc.


If you don't want to use A86, or already have another assembler, you can use that assembler in these tutorials. Simply use the following format for your programs.

SEG_A         SEGMENT
              ASSUME CS:SEG_A, DS:SEG_A
              ORG 100H
COMDUMMY      PROC FAR
        INIT: JMP  START

;insert your data here

        START:

;insert your main program code here
 
         RETN
COMDUMMY ENDP

SEG_A    ENDS
         END INIT

Return Icon Back to requirements page