refactor(fmod): move all original files into fmod directory

This commit is contained in:
phaneron 2025-08-20 04:38:38 -04:00
parent 50fb3c6b1c
commit 35569faecc
544 changed files with 0 additions and 0 deletions

View file

@ -1,41 +0,0 @@
%include "./FMOD_static/win32/src/c32.mac"
; ==========================================================================================
; GLOBAL UNINITIALIZED DATA
; ==========================================================================================
[SEGMENT .data use32 align=32]
; ==========================================================================================
; CODE
; ==========================================================================================
[SEGMENT .text use32 align=32]
; =================================================================================================================================
; int FMOD_OS_SupportsSSE
; =================================================================================================================================
proc FMOD_OS_SupportsSSE
push ebx
push ecx
push edx
push esi
push edi
mov eax, 1
cpuid
test edx, 02000000h
jnz SSEFound
mov eax, 0
jmp SSETestEnd
SSEFound:
mov eax, 1
SSETestEnd:
pop edi
pop esi
pop edx
pop ecx
pop ebx
endproc