TITLE "Z33STEPB - Z3lib 4.0" ;================================================================= ; Copyright (C) 1989 by Jay Sage. Permission granted to ; Alpha Systems Corp. to distribute with The Libraries, Version 4 ;----------------------------------------------------------------- ; Author : Jay Sage ; Date : ; Version : 1.0 ; Module : Z33STEPB ; Abstract: This module contains the routine SETEPB which sets the ; external program bit in the Command Status Flag. ; Revision: ;- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ; Module Entry Points PUBLIC SETEPB ; External References EXT RETCST .Z80 CSEG ;=============================================================== ; NAME - SETEPB ; Entry: - None ; Exit : - None ; Uses : - None ; Special Requirements: None ;=============================================================== SETEPB: PUSH HL CALL RETCST ; Point to Command Status Flag SET 3,(HL) ; Set External Program Bit POP HL RET END