; Sets time allowed online to a higher value ; ; Uuseful for giving a new user more time in special cases output. ; ; ==> does not need EMXSUBS.REL <== ; ==> Ignore any L80 generated errors that reference 'undefined globals' ; TMELEV EQU 90 ; Set to number of minutes you want to ; give them ; ASEG .Z80 ORG 100H ; JP START ; INCLUDE EMXHDR.MAC ; START:: LD HL,0 ADD HL,SP LD (CCPSTK),HL LD SP,STACK ; LD A,TMELEV LD (MINON),A ; Store new time allowed LD HL,(CCPSTK) LD SP,HL RET ; DS 16 ; STACK:: DW 0 CCPSTK::DW 0 ; END