|
1 | 1 | ;
|
| 2 | +PUBLIC statistics1 |
| 3 | +PUBLIC statistics2 |
| 4 | +PUBLIC statistics3 |
| 5 | +PUBLIC statistics4 |
| 6 | +PUBLIC statistics5 |
| 7 | +PUBLIC msg_in_dos_box |
| 8 | +PUBLIC msg_dos_access2 |
| 9 | +PUBLIC msg_too_large |
| 10 | +PUBLIC msg_xms_memory_error |
| 11 | +PUBLIC msg_version_fail |
| 12 | +PUBLIC msg_no_himem |
| 13 | +PUBLIC msg_dos_access |
| 14 | +PUBLIC magicdrvstring |
| 15 | +PUBLIC msg_cannot_cache |
| 16 | +PUBLIC help_text |
| 17 | +PUBLIC whatsanasterisk |
| 18 | +PUBLIC bufferstring1 |
| 19 | +PUBLIC bufferstring2 |
| 20 | +PUBLIC bufferstring3 |
| 21 | +PUBLIC extrastatus1 |
| 22 | +PUBLIC extrastatus2 |
| 23 | +PUBLIC extrastatus3 |
| 24 | +PUBLIC extrastatus4 |
| 25 | +PUBLIC extrastatus5 |
| 26 | +PUBLIC drivestring1 |
| 27 | +PUBLIC drivestring2 |
| 28 | +PUBLIC drivestring3 |
| 29 | +PUBLIC msg_installed |
2 | 30 |
|
| 31 | +zseg segment public 'CODE' |
| 32 | + |
| 33 | + assume cs:zseg |
| 34 | + |
| 35 | + |
| 36 | +msg_installed db 13,10,'The memory-resident portion of SMARTDrive is loaded.',13,10,'$' |
| 37 | +msg_in_dos_box db 13,10,'You cannot load SMARTDrive when a shell program (such as' |
| 38 | + db 13,10,'MS-DOS shell) or Windows is running. Quit Windows or the' |
| 39 | + db 13,10,'shell program, and then load SMARTDrive.',13,10,'$' |
| 40 | +msg_version_fail db 13,10,'SMARTDrive requires MS-DOS version 3.1 or later.',13,10,'$' |
| 41 | +msg_xms_memory_error db 'There is insufficient XMS memory to load SMARTDrive.',13,10,'$' |
| 42 | +msg_no_himem db 'SMARTDrive cannot be loaded because the XMS driver, HIMEM.SYS' |
| 43 | + db 13,10,'is not loaded. Check the CONFIG.SYS file for a device=himem.sys' |
| 44 | + db 13,10,'command line.',13,10,'$' |
| 45 | +msg_cannot_cache db 13,10,'Warning: Unable to use a disk cache on the specified drive',13,10,'$' |
| 46 | +msg_too_large db 13,10,'SMARTDrive configuration is too large.',13,10,'$' |
| 47 | +msg_dos_access db 13,10,'Non-fatal error detected: error #','$' |
| 48 | +msg_dos_access2 db 13,10,'$' |
| 49 | +help_text db 13,10,'Installs and configures the SMARTDrive disk-caching utility.',13,10 |
| 50 | + db 13,10,'SMARTDRV [[drive[+|-]]...] [/E:ElementSize] [InitCacheSize][WinCacheSize]]' |
| 51 | + db 13,10,' [/B:BufferSize] [/C] [/R] [/L] [/Q] [/S] [/V]',13,10 |
| 52 | + db 13,10,' drive Specifies the drive for which to control caching. You can' |
| 53 | + db 13,10,' specify multiple drives.' |
| 54 | + db 13,10,' + Enables write-behind caching for the specified drive.' |
| 55 | + db 13,10,' - Disables all caching for the specified drive.' |
| 56 | + db 13,10,' /E:ElementSize Specifies how many bytes of information to move at one time.' |
| 57 | + db 13,10,' InitCacheSize Specifies how many KB of XMS memory to use for the cache.' |
| 58 | + db 13,10,' WinCacheSize Specifies how many KB of XMS memory to use for the cache' |
| 59 | + db 13,10,' when running Windows.' |
| 60 | + db 13,10,' /B:BufferSize Specifies the size of the read-ahead buffer.' |
| 61 | + db 13,10,' /C Writes all write-behind information to the hard disk.' |
| 62 | + db 13,10,' /R Clears the contents of the cache and restarts SMARTDrive.' |
| 63 | + db 13,10,' /L Loads SMARTDrive into conventional memory.' |
| 64 | + db 13,10,' /Q Prevents SMARTDrive from displaying status messages' |
| 65 | + db 13,10,' when it starts.' |
| 66 | + db 13,10,' /S Displays additional information about SMARTDrive',027h,'s status.' |
| 67 | + db 13,10,' /V Displays SMARTDrive status messages when starting.',13,10,13,10,'$' |
| 68 | +statistics1 db 'Microsoft SMARTDrive Disk Cache version 4.1' |
| 69 | + db 13,10,'Copyright 1991,1993 Microsoft Corp.',13,10,'$' |
| 70 | +statistics2 db 13,10,'Cache size: ','$' |
| 71 | +statistics3 db ' bytes',13,10,'Cache size while running Windows: ','$' |
| 72 | +statistics4 db ' bytes',13,10 |
| 73 | + db 13,10,' Disk Caching Status' |
| 74 | + db 13,10,'drive read cache write cache buffering' |
| 75 | + db 13,10,'--------------------------------------------','$' |
| 76 | +statistics5 db 13,10,13,10,'For help, type "Smartdrv /?".',13,10,'$' |
| 77 | +drivestring1 db 13,10,' ?: yes yes','$' |
| 78 | +drivestring2 db 13,10,' ?: yes no ','$' |
| 79 | +drivestring3 db 13,10,' ?: no no ','$' |
| 80 | +extrastatus1 db 13,10,'Room for ','$' |
| 81 | +extrastatus2 db ' elements of ','$' |
| 82 | +extrastatus3 db ' bytes each',13,10,'There have been ','$' |
| 83 | +extrastatus4 db ' cache hits',13,10,' and ','$' |
| 84 | +extrastatus5 db ' cache misses',13,10,'$' |
| 85 | +bufferstring1 db ' yes','$' |
| 86 | +bufferstring2 db ' no','$' |
| 87 | +bufferstring3 db ' -','$' |
| 88 | +magicdrvstring db 'You must specify the host drive for a DoubleSpace drive.',13,10,13,10,7,'$' |
| 89 | +whatsanasterisk db 13,10,13,10,'* DoubleSpace drive cached via host drive.','$' |
| 90 | + |
| 91 | +zseg ends |
| 92 | + |
| 93 | +end |
0 commit comments