Files
x86-bare-metal-examples/protected_mode.S

11 lines
207 B
ArmAsm
Raw Normal View History

/* https://github.com/cirosantilli/x86-bare-metal-examples#protected-mode */
2018-12-04 09:46:27 +00:00
2015-10-04 19:59:15 +02:00
#include "common.h"
2015-10-18 14:56:12 +02:00
BEGIN
CLEAR
2015-10-18 14:56:12 +02:00
PROTECTED_MODE
VGA_PRINT_STRING $message
jmp .
2015-10-18 14:56:12 +02:00
message:
.asciz "hello world"