home *** CD-ROM | disk | FTP | other *** search
- ; backdrop data definitions
-
- tim dd 0 ;timer handle
- win dd 0 ;window handle
- key dd 0 ;key handle
- ver dw 0
- cnvtcnt dw 5
-
- init_strm db 1bh,0 ;window stream
- dw init_strml-4 ;length
- db 0d7h ;hide frame
- db 0c2h,0,0 ;move to top, left edge of screen
- init_log db 0c5h,60,80 ;logical size
- init_phys db 0c3h,60,80 ;physical size
- db 0dbh ;physical attributes
- db 0e2h ;set output attribute
- attr db 17h ;attribute
- db 0d4h ;show window
- db 0e4h ;redraw window
- init_strml equ $-init_strm ;length of data stream
-
- updt_strm db 1bh,0 ;header
- dw updt_strml-4 ;length
- db 0e2h,17h
- db 0c0h,2,2 ;set cursor position
- db 60h+sdatel ;write next 8 characters
- sdate db '00/00/00' ;system date
- sdatel equ $-sdate
- db 0c0h,2,11 ;set cursor position
- db 60h+stimel ;write next 8 characters
- stime db '00:00:00' ;system time
- stimel equ $-stime
- updt_strml equ $-updt_strm
-
- text_strm db 1bh,0
- dw text_strml-4
- db 0c0h,1,1 ;move cursor
- db 60h+head_strml ;string write
- head_strm db '┌────────┬────────┐'
- head_strml equ $-head_strm
- db 0c0h,2,1 ;move cursor
- db 60h+head_strml ;string write
- db '│00/00/00│00:00:00│'
- db 0c0h,3,1 ;move cursor
- db 60h+head_strml ;string write
- db '└────────┴────────┘'
- db 0c0h, 6,1,98h+ms_strml/256,ms_strml MOD 256
- ms_strm db '┌───────────────────────────────────────┐'
- ms_strml equ $-ms_strm
- db 0c0h, 7,1,98h+ms_strml/256,ms_strml MOD 256
- db '│ Total Avail Largest │'
- db 0c0h, 8,1,98h+ms_strml/256,ms_strml MOD 256
- db '│ Common │'
- db 0c0h, 9,1,98h+ms_strml/256,ms_strml MOD 256
- db '│ Conventional k k k │'
- db 0c0h,10,1,98h+ms_strml/256,ms_strml MOD 256
- db '│ Expanded k k k │'
- db 0c0h,11,1,98h+ms_strml/256,ms_strml MOD 256
- db '└───────────────────────────────────────┘'
- text_strml equ $-text_strm ;length of window stream
-
- logo_strm db 1bh,0
- dw logo_strml-4
- db 0c0h,16,15,98h+logo_linel/256,logo_linel MOD 256
- logo_line db '┌────────────────────────────┐ ───────────────────▄── '
- logo_linel equ $-logo_line
- db 0c0h,17,15,98h+logo_linel/256,logo_linel MOD 256
- db '│ │ ────────────────▄▄▄─── '
- db 0c0h,18,15,98h+logo_linel/256,logo_linel MOD 256
- db '│ DESQview '
- logo_vers db 'X.XX │ ─────────────▄▄▄▄▄──── '
- db 0c0h,19,15,98h+logo_linel/256,logo_linel MOD 256
- db '│ │ ──────────▄▄▄▄▄▄▄───── '
- db 0c0h,20,15,98h+logo_linel/256,logo_linel MOD 256
- db '└────────────────────────────┘ ───────▄▄▄▄▄▄▄▄▄────── '
- db 0c0h,21,15,98h+logo_linel/256,logo_linel MOD 256
- db ' Copyright (C) 1990 ────▄▄▄▄▄▄▄▄▄▄▄─────── '
- db 0c0h,22,15,98h+logo_linel/256,logo_linel MOD 256
- db ' Quarterdeck Office Systems ─▄▄▄▄▄▄▄▄▄▄▄▄▄──────── '
- db 0c0h,23,15,98h+logo_linel/256,logo_linel MOD 256
- db ' '
- logo_strml equ $-logo_strm
-
- mem_strm db 1bh,0
- dw mem_strml-4
- db 0e2h,30h
- db 0c0h, 8,16
- db 60h+com_strml
- com_strm db ' '
- com_strml equ $-com_strm
- db 0c0h, 9,16
- db 60h+com_strml
- con_strm db ' k k k '
- db 0c0h,10,16
- db 60h+com_strml
- exp_strm db ' k k k '
- mem_strml equ $-mem_strm
-
- orphan db 1bh,10h ;manager stream
- dw orphanl-4
- db 62h ;disable width change
- db 63h ;disable height change
- db 0c5h ;orphan me
- orphanl equ $-orphan
-