Renamed a symbol
This commit is contained in:
@@ -584,7 +584,7 @@ NEWSYM DisableScreenSaver, db 0
|
|||||||
NEWSYM TrapMouseCursor, db 1
|
NEWSYM TrapMouseCursor, db 1
|
||||||
NEWSYM KeyQuickClock, dd 0
|
NEWSYM KeyQuickClock, dd 0
|
||||||
NEWSYM KeyQuickMinimize, dd 0
|
NEWSYM KeyQuickMinimize, dd 0
|
||||||
NEWSYM CopyMethod, db 2
|
NEWSYM MMXSupport, db 1
|
||||||
|
|
||||||
GUIsave equ $-GUIRAdd
|
GUIsave equ $-GUIRAdd
|
||||||
|
|
||||||
|
|||||||
@@ -33,7 +33,7 @@ EXTSYM smallscreenon,spcon
|
|||||||
EXTSYM statefileloc,LatestSave
|
EXTSYM statefileloc,LatestSave
|
||||||
EXTSYM Create_File,Delete_File,Open_File,Get_File_Date,Close_File,Change_Dir,Get_Dir
|
EXTSYM Create_File,Delete_File,Open_File,Get_File_Date,Close_File,Change_Dir,Get_Dir
|
||||||
EXTSYM romloadskip
|
EXTSYM romloadskip
|
||||||
EXTSYM cfgloadgdir,cfgloadsdir,CopyMethod
|
EXTSYM cfgloadgdir,cfgloadsdir,MMXSupport
|
||||||
EXTSYM init18_2hz
|
EXTSYM init18_2hz
|
||||||
EXTSYM OSExit
|
EXTSYM OSExit
|
||||||
%ifdef __LINUX__
|
%ifdef __LINUX__
|
||||||
@@ -1568,7 +1568,7 @@ NEWSYM DosExit ; Terminate Program
|
|||||||
|
|
||||||
NEWSYM MMXCheck
|
NEWSYM MMXCheck
|
||||||
; Check for cpu that doesn't support CPUID
|
; Check for cpu that doesn't support CPUID
|
||||||
cmp byte[CopyMethod],0
|
cmp byte[MMXSupport],0
|
||||||
jne near .nommx2
|
jne near .nommx2
|
||||||
mov edx,cpuidfname
|
mov edx,cpuidfname
|
||||||
call Open_File
|
call Open_File
|
||||||
@@ -1589,7 +1589,7 @@ NEWSYM MMXCheck
|
|||||||
|
|
||||||
; MMX support
|
; MMX support
|
||||||
mov byte[FPUCopy],0
|
mov byte[FPUCopy],0
|
||||||
mov byte[CopyMethod],0
|
mov byte[MMXSupport],0
|
||||||
mov eax,1
|
mov eax,1
|
||||||
CPUID
|
CPUID
|
||||||
|
|
||||||
@@ -1601,7 +1601,7 @@ NEWSYM MMXCheck
|
|||||||
test edx,1 << 23
|
test edx,1 << 23
|
||||||
jz .nommx
|
jz .nommx
|
||||||
mov byte[FPUCopy],2
|
mov byte[FPUCopy],2
|
||||||
mov byte[CopyMethod],2
|
mov byte[MMXSupport],2
|
||||||
mov edx,YesMMX
|
mov edx,YesMMX
|
||||||
call PrintStr
|
call PrintStr
|
||||||
.nommx
|
.nommx
|
||||||
|
|||||||
Reference in New Issue
Block a user