Path: utzoo!utgpu!news-server.csri.toronto.edu!cs.utexas.edu!know!samsung!umich!caen!salt.engin.umich.edu!mrice From: mrice@caen.engin.umich.edu (Michael Rice) Newsgroups: comp.sys.ibm.pc.programmer Subject: Simple MASM Question Summary: Short and Far JMPs Message-ID: <1990Jul10.210329.2214@caen.engin.umich.edu> Date: 10 Jul 90 21:03:29 GMT Sender: news@caen.engin.umich.edu (CAEN Netnews) Followup-To: comp.sys.ibm.pc.programmer Organization: University of Michigan Engineering, Ann Arbor Lines: 20 Programming in MASM 5.1 I at times write code that requires JMP instructions that go over 128 bytes. Not knowing all the directives and syntax (since I am a bit new at this) I don't know the best way to jump farther than 128 bytes(+ or -). I have been doing something like this: je far_jump_link . . . far_jump_link: jmp far_jump . . . far_jump: This doesn't look like good programming to me. What is the REAL way to do this. Any help appreciated.