Get reference to the values that are pushed on the stack by int

This commit is contained in:
Baptiste Wicht 2014-01-26 21:36:33 +01:00
parent cff10164f3
commit 3374c08d55

View File

@ -38,7 +38,13 @@ struct syscall_regs {
uint64_t r10;
uint64_t r11;
uint64_t r12;
uint64_t rbp;
uint64_t rsp;
uint64_t code;
uint64_t rip;
uint64_t cs;
uint64_t rflags;
uint64_t rsp;
} __attribute__((packed));
void setup_interrupts();