Dec 122017
 
Hyperdisk disk cache and utilities, v 4.70.

Full Description of File


SpeedKit from HyperWare Version 4.70
Contains the shareware versions of the
world famous HyperDisk, HyperKey, and
HyperScreen Utilities. Two new utilities
are included: HyperRAM for CPU speedup
and IDE Booster for increased performance
on IDE Hard Drives. Also includes new
windows control panel to monitor cache
setup & performance from within Windows.
Documentation and orderform included.


File SK470S.ZIP from The Programmer’s Corner in
Category HD Utilities
Hyperdisk disk cache and utilities, v 4.70.
File Name File Size Zip Size Zip Type
DISKINFO.EXE 14611 14230 deflated
FILE_ID.DIZ 407 261 deflated
HYPERAPI.TXT 8573 1883 deflated
HYPERCP.EXE 60672 23261 deflated
HYPERCP.HLP 40728 9379 deflated
HYPERDKX.EXE 47664 30306 deflated
HYPERKEY.EXE 16320 9702 deflated
HYPERRAM.EXE 10792 10451 deflated
HYPERSCR.EXE 14000 8723 deflated
HYPERUPS.TXT 5057 1944 deflated
IDEBOOST.EXE 6352 3452 deflated
IDEBOOST.TXT 22131 8117 deflated
INSTALL.EXE 79335 78406 deflated
ORDERFRM.TXT 4104 790 deflated
PROFLITE.EXE 74910 73261 deflated
READTHIS.TXT 28670 9733 deflated
SPEEDKIT.TXT 94872 29944 deflated
TPCREAD.ME 199 165 deflated

Download File SK470S.ZIP Here

Contents of the HYPERAPI.TXT file


;-----------------------------------------------------------------------------
;
;
; HyperWare Application Program Interface (API)
;
;
;-----------------------------------------------------------------------------
;
; HyperWare products share a common DOS multiplex Interrupt number (Int 2F).
; The following key factors apply to the interface operations:
;
; The DOS Multiplex Interrupt Number (INT 2f) is incrementally searched to
; find a free multiplex number. The beginning number is 0DFh. If this number
; is in use, then 0C0h,0C1h,0C2h,... are each quired until a free number
; is found.
;
; Each HyperWare Product uses a unique Product Code placed in the BX register,
; specifing the intended product for communications.
;
; Currently installation checks exist for all HyperWare products.
; HyperDisk also provides simple inquire and selections of the major cacheing
; functions.
;
;
;-----------------------------------------------------------------------------
;
; HyperDisk installation check.
;
; Call and return register descriptions for Interrupt 2Fh:
;
; Calling Registers:
;
;AH = Trial Multiplex Number ; Initially 0DFh
;AL = 00h ; Installed?? request code
;BX ='DH'; Disk, HyperWare
;CX = 00h; Clear to comfirm return codes
;DX = 00h; Clear to comfirm return codes
;
;
; Return Registers, Case 1 nothing installed using the Trial Multiplex Number:
;
;AL = 00h; Nothing install
;
;
; Return Registers, Case 2 something install, not HyperWare product:
;
;AL = 0FFh; Multiplex Number in use
;
;CX = not 'YH'; not a HyperWare Product!
;; increment Trial Multiplex Number
;; and try again until either a free
;; number found, or a HyperWare product
;; found, or Multiplex Number > 0FFh.
;
;
; Return Registers, Case 3 HyperWare product, but not HyperDisk
;
;AL = 0FFh; Multiplex Number in use
;
;CX = 'YH'; HyperWare Product selected by BX
;; is installed.
;;
;DX = 00h; zero indicates selected product not
;; found
;
;
; Return Registers, Case 4 HyperDisk installed!
;AH = HyperWare Multiplex Number; result of multiplex # search
;AL = 0FFh ; Number in use
;BX = CS segment of HyperDisk; Valid if DX not zero
;
;CX = 'YH' ; HyperWare Product selected by BX
;; is installed.
;
;DX = HyperDisk Local Data Version # (Not HyperDisk Product Version)
;
;
;
;--------------------------------------------------------------------------
;
;
; Example assembly language:
;

HyperCalloutdb0DFh; Dos MultiPlex Number for HyperWare

HyDkProductCodeequ'DH'; Product Code for HyperDisk

HyKyProductCodeequ'KH'; Product Code for HyperKey

HyScProductCodeequ'SH'; Product Code for HyperScreen

HyScProductCodeequ'BH'; Product Code for HyperStb

;-----------------------------------------------------------------------------

SearchHyAPIprocnear
movax,352fh; get vector for Dos Multiplex
int21h; call dos
movcx,es; must not be zero!
jcxzshort SearchHyAPIRet; if zero then no multiplex established

SearchHyAPILp:
xorcx,cx; zero cx
xordx,dx; zero dx
movbx,HydkProductCode; Looking for HyperDisk

movah,HyperCallOut; Disk Cache installed?
xoral,al; install check request

pushds; make sure not changed
int2fh; go do multiplex interrupt
popds

oral,al; zero...no change
jeshort SearchHyAPIRet; nothing installed

cmpal,-1; something installed is -1
jneshort SearchHyAPINxt; try next Multiplex number if not -1

cmpcx,'YH'; HyperWare Product?
jneshort SearchHyAPINxt; if not skip to next Multiplex number

ordx,dx; non-zero if HyperDisk installed
jzshort SearchHyAPIRet; HyperDisk not here

SearchHyAPIFound:; Found Product, Carry is clear
ret; AH = Multiplex #
; BX = CS segment of HyperDisk
; DX = HyperDisk Local Data Version #


SearchHyAPINxt:
incHyperCallOut; Disk Cache installed?
jnzshort SearchHyAPILp; stop at 0FFh

SearchHyAPIRet:
stc; not found, carry Set
ret


SearchHyAPIendp

;
;-----------------------------------------------------------------------------
;
;
; Get Current HyperDisk Cache State
;
; Call and return register descriptions for Interrupt 2Fh:
;
; Calling Registers:
;
;AH = Multiplex Number; Value determined by Install Check
;AL = 01h; Get current HyperDisk Cache State
;BX ='DH'; Product = Disk, HyperWare
;
;
; Return Registers:
;
;AX = 0000h; function supported
;BX = UsedBuffers; number of cache buffers in use
;CX = ModifiedBuffers; number of modified buffers
;DL = Current Cache values: 0 = Disabled, 1 = Enabled
; Bit 0..StagedFloppy: Stage Write floppy drive write operations
; Bit 1....StagedHard: Stage Write hard drive write operations
; Bit 2..VerifyFloppy: Verify floppy drive write operations
; Bit 3....VerifyHard: Verify hard drive write operations
; Bit 4.....Reserved0: Reserved always 0
; Bit 5.....Reserved1: Reserved always 0
; Bit 6..FloppyEnable: Enable floppy caching
; Bit 7..CacheEnabled: Enable all caching functions
;
;
;
; Example assembly language:
;
;
movah,HyperCallOut; HyperWare Multiplex Number
movbx,HydkProductCode; HyperDisk product selector
moval,01h; Get current cache state

int2fh; do multiplex interrupt

; AX = 0, if supported
; ; BX = UsedBuffers
; ; CX = ModifiedBuffers
;
; ; Bit x: 0 = Disabled, 1 = Enabled
;; DL = Bit 0..StagedFloppy
;; Bit 1....StagedHard
;; Bit 2..VerifyFloppy
;; Bit 3....VerifyHard
;; Bit 4.....Reserved0
; ; Bit 5.....Reserved1
; ; Bit 6..FloppyEnable
;; Bit 7..CacheEnabled
;
;
;-----------------------------------------------------------------------------
;
;
; Set HyperDisk Cache State, return previous Cache State
;
;
; Call and return register descriptions for Interrupt 2Fh:
;
; Calling Registers:
;
;AH = Multiplex Number; Value determined by Install Check
;AL = 01h; Get current HyperDisk Cache State
;BX ='DH'; Product = Disk, HyperWare
;DL = New Cache values: 0 = Disabled, 1 = Enabled
; Bit 0..StagedFloppy: Stage Write floppy drive write operations
; Bit 1....StagedHard: Stage Write hard drive write operations
; Bit 2..VerifyFloppy: Verify floppy drive write operations
; Bit 3....VerifyHard: Verify hard drive write operations
; Bit 4.....Reserved0: Reserved always 0
; Bit 5.....Reserved1: Reserved always 0
; Bit 6..FloppyEnable: Enable floppy caching
; Bit 7..CacheEnabled: Enable all caching functions
;
;
;
; Return Registers:
;
;AX = 0000h; function supported and asynchronously queued
;BX = UsedBuffers; number of cache buffers in use
;CX = ModifiedBuffers; number of modified buffers
;DH = Previous Cache values: 0 = Disabled, 1 = Enabled
; Bit 0..StagedFloppy: Stage Write floppy drive write operations
; Bit 1....StagedHard: Stage Write hard drive write operations
; Bit 2..VerifyFloppy: Verify floppy drive write operations
; Bit 3....VerifyHard: Verify hard drive write operations
; Bit 4.....Reserved0: Reserved always 0
; Bit 5.....Reserved1: Reserved always 0
; Bit 6..FloppyEnable: Enable floppy caching
; Bit 7..CacheEnabled: Enable all caching functions
;
;
;
; Example assembly language:
;
;
movah,HyperCallOut; HyperWare Multiplex Number
movbx,HydkProductCode; HyperDisk product selector

movdl,11001111b; DL = Bit 0..StagedFloppy
; Bit 1....StagedHard
; Bit 2..VerifyFloppy
; Bit 3....VerifyHard
; Bit 4.....Reserved0
; Bit 5.....Reserved1
; Bit 6..FloppyEnable
; Bit 7..CacheEnabled
;
moval,02h; Set current cache state

int2fh; do multiplex interrupt

; AX = 0, if supported
; ; BX = UsedBuffers
; ; CX = ModifiedBuffers
; ;
;; DH = Bit 0..StagedFloppy
;; Bit 1....StagedHard
;; Bit 2..VerifyFloppy
;; Bit 3....VerifyHard
;; Bit 4.....Reserved0
; ; Bit 5.....Reserved1
; ; Bit 6..FloppyEnable
;; Bit 7..CacheEnabled
;
;
;-----------------------------------------------------------------------------
;
;
;









 December 12, 2017  Add comments

 Leave a Reply

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong>

(required)

(required)