Commit 7b37a6d4 authored by Austin English's avatar Austin English Committed by Alexandre Julliard

ntdll: Add Sparc processor support.

parent fac32825
...@@ -922,6 +922,8 @@ void fill_cpu_info(void) ...@@ -922,6 +922,8 @@ void fill_cpu_info(void)
cached_sci.Architecture = PROCESSOR_ARCHITECTURE_PPC; cached_sci.Architecture = PROCESSOR_ARCHITECTURE_PPC;
#elif defined(__ALPHA__) #elif defined(__ALPHA__)
cached_sci.Architecture = PROCESSOR_ARCHITECTURE_ALPHA; cached_sci.Architecture = PROCESSOR_ARCHITECTURE_ALPHA;
#elif defined(__sparc__)
cached_sci.Architecture = PROCESSOR_ARCHITECTURE_SPARC;
#else #else
#error Unknown CPU #error Unknown CPU
#endif #endif
......
...@@ -526,6 +526,9 @@ typedef DWORD FLONG; ...@@ -526,6 +526,9 @@ typedef DWORD FLONG;
#define PROCESSOR_ARCHITECTURE_AMD64 9 #define PROCESSOR_ARCHITECTURE_AMD64 9
#define PROCESSOR_ARCHITECTURE_UNKNOWN 0xFFFF #define PROCESSOR_ARCHITECTURE_UNKNOWN 0xFFFF
/* Wine extension */
#define PROCESSOR_ARCHITECTURE_SPARC 20
/* dwProcessorType */ /* dwProcessorType */
#define PROCESSOR_INTEL_386 386 #define PROCESSOR_INTEL_386 386
#define PROCESSOR_INTEL_486 486 #define PROCESSOR_INTEL_486 486
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment