diff --git a/XTMax/Drivers/USEUMB/USE!UMBS.ASM b/XTMax/Drivers/USEUMB/USE!UMBS.ASM index f29c46e..5f44f60 100644 --- a/XTMax/Drivers/USEUMB/USE!UMBS.ASM +++ b/XTMax/Drivers/USEUMB/USE!UMBS.ASM @@ -238,18 +238,8 @@ Install: mov ah, 9 mov dx, s$Hello1 int 21h - mov dx, s$Hello2 - int 21h - mov dx, s$Empty - int 21h - mov dx, s$Hello3 - int 21h - mov dx, s$Empty - int 21h mov dx, s$Author int 21h - mov dx, s$Empty - int 21h ; Is there an XMS handler already? mov ax, 4300h @@ -273,8 +263,6 @@ Install: mov ah, 9 mov dx, s$XMMfound int 21h - mov dx, s$Empty - int 21h ; Check if it services UMBs by trying to allocate far too much mov ah, 10h @@ -451,15 +439,10 @@ Install: jmp Return -s$Hello1 db 0Dh,0Ah,'ÕÍÍÍÍÍÍÍÍÍÍÍÍÍ͵ Use!UMBs ÆÍÍÍÍÍÍÍÍÍÍÍÍ͸',0Dh,0Ah -s$Empty db '³ ³',0Dh,0Ah,'$' -s$Hello2 db '³ Upper Memory Block - Manager ³',0Dh,0Ah,'$' -s$Hello3 db '³ Works on any PC/XT/AT, either with or ³',0Dh,0Ah - db '³ without Extended or Expanded Memory! ³',0Dh,0Ah,'$' -s$XMMfound db '³ * found extended memory manager * ³',0Dh,0Ah,'$' -s$Author db '³ Author: Marco van Zwetselaar ³',0Dh,0Ah - db '³ dedicated it to the Public Domain 1991 ³',0Dh,0Ah,'$' -s$Installed db 'ÔÍ͵ Version 2.2 ÆÍÍÍÍÍÍÍÍÍ͵ Installed! ÆÍ;',0Dh,0Ah,0Ah,'$' -s$NotInstalled db 'Ô͵ Not Installed! UMBs Managed Already! ÆÍ¾',0Dh,0Ah,0Ah,'$' -s$ParamError db 'Ô͵ Not Installed! Invalid Command Line! ÆÍ¾',0Dh,0Ah,0Ah,'$' - +s$Hello1 db "XTUMBS: UMB Manager for XTMax v2.2",0Dh,0Ah,'$' +s$Author db " Based on rewritten USE!UMBS by Krister Nordvall",0Dh,0Ah + db " Based on original work by Marco van Zwetselaar",0Dh,0Ah,'$' +s$XMMfound db "Found XMS Manager.",0Dh,0Ah,'$' +s$Installed db "UMB Manager Installed.",0Dh,0Ah,0Ah,'$' +s$NotInstalled db "Not Installed: UMB is already managed!",0Dh,0Ah,0Ah,'$' +s$ParamError db "Not Installed: Invalid Command Line!",0Dh,0Ah,0Ah,'$' diff --git a/XTMax/Drivers/XTUMBS.SYS b/XTMax/Drivers/XTUMBS.SYS index 9ab0098..4003326 100644 Binary files a/XTMax/Drivers/XTUMBS.SYS and b/XTMax/Drivers/XTUMBS.SYS differ