《操作系统》的实验代码。
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

11 行
200 B

  1. #include <stdio.h>
  2. #include <ulib.h>
  3. /* try to load the kernel's TSS selector into the DS register */
  4. int
  5. main(void) {
  6. asm volatile("movw $0x28,%ax; movw %ax,%ds");
  7. panic("FAIL: T.T\n");
  8. }