diff options
Diffstat (limited to 'src/libk/include')
-rw-r--r-- | src/libk/include/camellia/types.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/libk/include/camellia/types.h b/src/libk/include/camellia/types.h index 86ffb56..6fee578 100644 --- a/src/libk/include/camellia/types.h +++ b/src/libk/include/camellia/types.h @@ -37,10 +37,9 @@ struct intr_data { * notable omissions: * - SSE registers (usually there's no need to save them, userland can do * that itself if it wants) */ - uint64_t r15, r14, r13, r12, r11, r10, r9, r8; - uint64_t rdi, rsi; - userptr_t rbp, rsp; - uint64_t rbx, rdx, rcx, rax, rip, flags; + uint64_t r15, r14, r13, r12, r11, r10, r9, r8; + uint64_t rdi, rsi, rbp, rsp, rbx, rdx, rcx, rax; + uint64_t rip, flags; char msg[]; /* variable size, NUL terminated */ }; |