This commit is contained in:
Ciro Santilli
2015-09-21 09:43:03 +02:00
parent 6add24a0ee
commit 6606a2647d
6 changed files with 75 additions and 2 deletions

12
reboot.S Normal file
View File

@@ -0,0 +1,12 @@
/*
http://stackoverflow.com/questions/32682152/how-to-reboot-in-x86-assembly-from-16-bit-real-mode
Infinite reboot loop on emulator!
TODO why does it work?
*/
#include "common.h"
BEGIN
ljmpw $0xF000, $0XFFF0
END