From e2635c8125dc2e440cc61e9fc7e8e0a77a9e7d81 Mon Sep 17 00:00:00 2001 From: Curle Date: Thu, 26 Nov 2020 03:49:54 +0000 Subject: [PATCH] Fix ordering of INTERRUPT_FRAME in header --- chroma/inc/kernel/system/interrupts.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/chroma/inc/kernel/system/interrupts.h b/chroma/inc/kernel/system/interrupts.h index 0522f0a..30c2ec5 100644 --- a/chroma/inc/kernel/system/interrupts.h +++ b/chroma/inc/kernel/system/interrupts.h @@ -10,11 +10,11 @@ extern const char* ExceptionStrings[]; typedef struct __attribute__((packed)) { - size_t ss; - size_t rsp; - size_t rflags; - size_t cs; size_t rip; + size_t cs; + size_t rflags; + size_t rsp; + size_t ss; } INTERRUPT_FRAME; typedef struct __attribute__((packed)) {