From 9b3b76f33d313fcbfc26807b16f8dd2f623a0bb4 Mon Sep 17 00:00:00 2001 From: antifallobst Date: Thu, 9 Feb 2023 13:28:37 +0100 Subject: [PATCH] fix (kernel): renamed 'crs' to 'cs' in cpu_state_T --- kernel/inc/platform/cpu.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernel/inc/platform/cpu.h b/kernel/inc/platform/cpu.h index 9264dd4..5677fed 100644 --- a/kernel/inc/platform/cpu.h +++ b/kernel/inc/platform/cpu.h @@ -56,7 +56,7 @@ typedef struct { // Saved by CPU uint64_t rip; - uint64_t crs; + uint64_t cs; uint64_t flags; uint64_t rsp; uint64_t ss;