TITLE "Z3PDUOK - Z3lib 4.0" ;================================================================ ; The Libraries, Version 4, (C) 1989 by Alpha Systems Corp. ;---------------------------------------------------------------- ; Author : Harold F. Bower ; Derived from Z3PDUOK.Z80 Ver 1.1 by Richard Conn ; Date : 15 Mar 87 ; Version : 1.2 ; Module : Z3PDUOK ; Abstract: This module contains the routine PUTDUOK which sets ; the DUOK byte to a specified value ; Revision: ;- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ; Module Entry Points PUBLIC PUTDUOK ; External References EXT @PUT0 .Z80 CSEG ;=============================================================== ; NAME - PUTDUOK ; Entry: A - Contains the value to set in DUOK flag ; Exit : - None, the flag byte is set ; Uses : - None ; Special Requirements: None ;=============================================================== PUTDUOK: PUSH HL ;save regs PUSH DE PUSH AF LD DE,2EH ;pt to byte address JP @PUT0 ; ..Offset and put the byte END