12 lines
200 B
C
12 lines
200 B
C
|
#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");
|
||
|
}
|
||
|
|