Specifying the Size of a CALL or JMP Instruction in MASM (50405)



The information in this article applies to:

  • Microsoft Macro Assembler (MASM) 5.0
  • Microsoft Macro Assembler (MASM) 5.1
  • Microsoft Macro Assembler (MASM) 5.1a
  • Microsoft Macro Assembler (MASM) 6.0
  • Microsoft Macro Assembler (MASM) 6.0a
  • Microsoft Macro Assembler (MASM) 6.0b

This article was previously published under Q50405

SUMMARY

The PTR operator can be used to specify the size of a register indirect operand for a CALL or JMP instruction. However, the qualifying operators are not NEAR and FAR, but WORD and DWORD. For example, to make a near jump to label xxx, use
   JMP WORD PTR xxx
				

MORE INFORMATION

The following example demonstrates how to generate an indirect far call and an indirect far jump in MASM.

Sample Code

; Assemble options needed: none

          .model  large
          .data
jumptable DD      routine1
          DD      routine2

          .code
start:    MOV     ax, @data
          MOV     ds, ax
          CALL    DWORD PTR  jumptable
          JMP     DWORD PTR  jumptable+4
          RET

cseg      SEGMENT word public 'code'
routine1  PROC
          RET
routine1  ENDP

routine2  PROC
          RET
routine2  ENDP
cseg      ENDS

          END     start
				

Modification Type:MinorLast Reviewed:10/17/2003
Keywords:KB50405