BIOS 割込み
以下なソレですが確認してみました。
# Allow the user to press a key, then reboot xorw %ax, %ax int $0x16 int $0x19
同じソレを xor してるので ax レジスタは 0 になるはず。なので Int 0x16, AH=0x00 によれば_GET KEYSTROKE_という事でキー押下を待って Interruput 0x19 で再起動、という事になるんかな。
以下なソレですが確認してみました。
# Allow the user to press a key, then reboot xorw %ax, %ax int $0x16 int $0x19
同じソレを xor してるので ax レジスタは 0 になるはず。なので Int 0x16, AH=0x00 によれば_GET KEYSTROKE_という事でキー押下を待って Interruput 0x19 で再起動、という事になるんかな。