home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CP/M
/
CPM_CDROM.iso
/
simtel
/
sigm
/
vols200
/
vol276
/
zcpr3cmd.lbr
/
JUMP.CMD
< prev
next >
Wrap
OS/2 REXX Batch file
|
1986-06-11
|
512b
|
26 lines
;section 5G
;command: JUMP
;Written by Richard Conn, modified by Bob Logan
;
;function: To Call the program (subroutine) at the specified address
; without loading from disk
;forms:
; jump <adr> Call at <adr>;<adr> is in HEX
JUMP EQU $
.phase Z3CMD
JU_E:
IF WJUMP ;wheel facility?
CALL WHLCHK ;check for wheel byte
ENDIF ;wjump
;
CALL HEXNUM ;get load address in hl
JP CALLPROG ;perform call
JU_L EQU $-JU_E
.dephase