From dd46d85ffb015587b1a037ad0170399aa45a2e8a Mon Sep 17 00:00:00 2001 From: Aniketh Reddimi Date: Thu, 31 Oct 2019 21:38:19 +0530 Subject: [PATCH] Update guest.c --- guest.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guest.c b/guest.c index 9aedd66..9897e81 100644 --- a/guest.c +++ b/guest.c @@ -11,7 +11,7 @@ __attribute__((section(".start"))) _start(void) { const char *p; - for (p = "Hello, world!\n"; *p; ++p) + for (p = "HELLO WORLD!\n"; *p; ++p) outb(0xE9, *p); *(long *) 0x400 = 42;