os_kernel_lab/labcodes_answer/lab6_result/user/badsegment.c

12 lines
200 B
C
Raw Normal View History

2014-08-20 15:42:20 +08:00
#include <stdio.h>
#include <ulib.h>
/* try to load the kernel's TSS selector into the DS register */
int
main(void) {
asm volatile("movw $0x28,%ax; movw %ax,%ds");
panic("FAIL: T.T\n");
}