diff options
Diffstat (limited to 'trapasm.S')
-rw-r--r-- | trapasm.S | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -8,6 +8,8 @@ alltraps: # Build trap frame. pushl %ds pushl %es + pushl %fs + pushl %gs pushal # Set up data segments. @@ -24,6 +26,8 @@ alltraps: .globl trapret trapret: popal + popl %gs + popl %fs popl %es popl %ds addl $0x8, %esp # trapno and errcode |