diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2023-05-06 15:32:04 +0200 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2023-05-06 15:32:04 +0200 |
commit | 7b392afb14358649173437fe435859ce7887cba6 (patch) | |
tree | 2d3c09cb4b62ebc3c48f0b0d4690cb3caf7852b9 /include | |
parent | fdd1b1900e48c852fc89144bf574b6831b305bea (diff) | |
download | gnumach-7b392afb14358649173437fe435859ce7887cba6.tar.gz gnumach-7b392afb14358649173437fe435859ce7887cba6.tar.bz2 gnumach-7b392afb14358649173437fe435859ce7887cba6.zip |
x86_64: Add CPU_TYPE_X86_64 CPU type
Diffstat (limited to 'include')
-rw-r--r-- | include/mach/machine.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/mach/machine.h b/include/mach/machine.h index b696d4b5..9a176e8c 100644 --- a/include/mach/machine.h +++ b/include/mach/machine.h @@ -109,6 +109,7 @@ extern struct machine_slot machine_slot[NCPUS]; #define CPU_TYPE_PENTIUM ((cpu_type_t) 18) #define CPU_TYPE_PENTIUMPRO ((cpu_type_t) 19) #define CPU_TYPE_POWERPC ((cpu_type_t) 20) +#define CPU_TYPE_X86_64 ((cpu_type_t) 21) /* * Machine subtypes (these are defined here, instead of in a machine |