Files
MIT6.828_OS/lab/user/badsegment.c
2019-07-06 10:39:40 +08:00

12 lines
224 B
C

// program to cause a general protection exception
#include <inc/lib.h>
void
umain(int argc, char **argv)
{
// Try to load the kernel's TSS selector into the DS register.
asm volatile("movw $0x28,%ax; movw %ax,%ds");
}