diff options
author | Ian Moffett <ian@osmora.org> | 2024-02-23 12:51:07 -0500 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2024-02-23 12:51:07 -0500 |
commit | 165e56a05bbb00a41ea6aedeb34aae19860e2b27 (patch) | |
tree | 5d86a3293fcdda583326e070113c55d7930f90e8 /sys/include/arch/amd64 | |
parent | d6a9509916b324f66f766880290c3d71c9a6514b (diff) |
kernel/amd64: frameasm: Add missing register
This commit fixes a bug in pop_trapframe_ec, in which a register was
missing.
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'sys/include/arch/amd64')
-rw-r--r-- | sys/include/arch/amd64/frameasm.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/include/arch/amd64/frameasm.h b/sys/include/arch/amd64/frameasm.h index 2531bd8..cdcdd20 100644 --- a/sys/include/arch/amd64/frameasm.h +++ b/sys/include/arch/amd64/frameasm.h @@ -72,6 +72,7 @@ pop %r8 pop %r9 pop %r10 + pop %r11 pop %r12 pop %r13 pop %r14 |