2023-01-14 15:36:24 +04:00
|
|
|
#pragma once
|
|
|
|
|
#include "port.h"
|
|
|
|
|
|
|
|
|
|
__attribute__((noreturn))
|
|
|
|
|
static inline void qemu_shutdown() {
|
|
|
|
|
port_word_out(0x604, 0x2000);
|
2023-01-19 23:07:49 +04:00
|
|
|
while (1) {
|
|
|
|
|
asm("hlt");
|
|
|
|
|
}
|
2023-01-14 15:36:24 +04:00
|
|
|
__builtin_unreachable();
|
|
|
|
|
}
|