home *** CD-ROM | disk | FTP | other *** search
- ;
- ; VLIB Module Name: VID5
- ; Author: Richard Conn
- ; VLIB Version Number: 1.1
- ; Module Version Number: 1.1
- ;
- public tinit
-
- ext vidptr,vidout,vidskp
- ;
- ; Initialize Terminal
- ; Affect No Registers
- ;
- tinit:
- push hl ;save regs
- push de
- push af
- ld hl,(vidptr) ;pt to environment
- ld a,(hl) ;no terminal?
- cp ' '+1
- jp c,done
- ld de,17h ;pt to cls string
- add hl,de
- ld d,0 ;no delay
- call vidskp ;skip over CL string
- call vidskp ;skip over CM string
- call vidskp ;skip over CE string
- call vidskp ;skip over SO string
- call vidskp ;skip over SE string
- ld a,(hl) ;get first char of TI string
- or a ;if no string, error
- jp z,done
- call vidout ;output string with delay
- done:
- pop af ;done
- pop de
- pop hl
- ret
-
- end