Fix ordering of INTERRUPT_FRAME in header

This commit is contained in:
Curle 2020-11-26 03:49:54 +00:00
parent c451afba0d
commit e2635c8125
Signed by: TheCurle
GPG Key ID: 5942F13718443F79

View File

@ -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)) {