X-Git-Url: http://4ch.mooo.com/gitweb/?a=blobdiff_plain;f=16%2Fxw%2Fmodex.def;h=7977a4a0819c24ec6883634c7916219eb43197b5;hb=a9fe632397649ac62b1d7febda9a62bc517c5c53;hp=45bd900fd75f568e59c75c42d698e5760e5d75b7;hpb=a9fb589a2cf020d485b63dff39f9a9196dc81575;p=16.git diff --git a/16/xw/modex.def b/16/xw/modex.def index 45bd900f..7977a4a0 100755 --- a/16/xw/modex.def +++ b/16/xw/modex.def @@ -3,8 +3,8 @@ ; MODEX.DEF - Include file ; Copyright (c) 1993-1994 by Alessandro Scotti ; -JUMPS -LOCALS +;JUMPS +;LOCALS TRUE EQU 1 ; Boolean constants FALSE EQU 0 @@ -111,53 +111,53 @@ ENDM ;------------------------------------------------------------ ; -.leave MACRO argsize - IF USE286 EQ TRUE - leave - ELSE - mov sp, bp - pop bp - ENDIF - IFNB - ret argsize - ELSE - ret - ENDIF -ENDM +;.leave MACRO argsize +; IF USE286 EQ TRUE +; leave +; ELSE +; mov sp, bp +; pop bp +; ENDIF +; IFNB +; ret argsize +; ELSE +; ret +; ENDIF +;ENDM ;------------------------------------------------------------ ; -.shr MACRO arg, count - IF USE286 EQ TRUE - shr arg, count - ELSE - $temp = count - WHILE $temp GT 0 - shr arg, 1 - $temp = $temp-1 - ENDM - ENDIF -ENDM +;.shr MACRO arg, count +; IF USE286 EQ TRUE +; shr arg, count +; ELSE +; $temp = count +; WHILE $temp GT 0 +; shr arg, 1 +; $temp = $temp-1 +; ENDM +; ENDIF +;ENDM ;------------------------------------------------------------ ; -.shl MACRO arg, count - IF USE286 EQ TRUE - shl arg, count - ELSE - $temp = count - WHILE $temp GT 0 - shl arg, 1 - $temp = $temp-1 - ENDM - ENDIF -ENDM +;.shl MACRO arg, count +; IF USE286 EQ TRUE +; shl arg, count +; ELSE +; $temp = count +; WHILE $temp GT 0 +; shl arg, 1 +; $temp = $temp-1 +; ENDM +; ENDIF +;ENDM ;------------------------------------------------------------ ; -.chk386 MACRO name, jump - IF USE386 EQ FALSE - .OUT "Warning: ", , " needs a 386 or better to run!" - jmp @@jump - ENDIF -ENDM +;.chk386 MACRO name, jump +; IF USE386 EQ FALSE +; .OUT "Warning: ", , " needs a 386 or better to run!" +; jmp @@jump +; ENDIF +;ENDM