2022-12-13 01:25:27 +03:00

9 lines
154 B
C

#pragma once
#include "port.h"
__attribute__((noreturn))
static inline void qemu_shutdown() {
port_word_out(0x604, 0x2000);
__builtin_unreachable();
}