From 7059cd5f5e23a5cbffb33097f068ee4ecd290f72 Mon Sep 17 00:00:00 2001 From: EnderIce2 Date: Wed, 28 Feb 2024 05:47:33 +0200 Subject: [PATCH] Update CR register flags documentation --- include/cpu/x86/x64/cr.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/cpu/x86/x64/cr.hpp b/include/cpu/x86/x64/cr.hpp index dd3dde2..4f6b8b1 100644 --- a/include/cpu/x86/x64/cr.hpp +++ b/include/cpu/x86/x64/cr.hpp @@ -106,9 +106,9 @@ namespace CPU uint64_t PGE : 1; /** @brief Performance Monitoring Counter */ uint64_t PCE : 1; - /** @brief Operating System Support */ + /** @brief FXSAVE/FXRSTOR Support */ uint64_t OSFXSR : 1; - /** @brief Operating System Support */ + /** @brief Unmasked Exception Support */ uint64_t OSXMMEXCPT : 1; /** @brief User-Mode Instruction Prevention */ uint64_t UMIP : 1;