From 165e56a05bbb00a41ea6aedeb34aae19860e2b27 Mon Sep 17 00:00:00 2001 From: Ian Moffett Date: Fri, 23 Feb 2024 12:51:07 -0500 Subject: 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 --- sys/include/arch/amd64/frameasm.h | 1 + 1 file changed, 1 insertion(+) (limited to 'sys/include/arch') 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 -- cgit v1.2.3