Alexander Myltsev 7e678618d1 Add fs.h.
2022-11-18 23:02:32 +03:00

9 lines
142 B
C

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