From 1dd69e16a24744ce9de7985ab75e89043791fdd0 Mon Sep 17 00:00:00 2001 From: Mathieu Maret Date: Thu, 12 Jul 2018 12:21:19 +0200 Subject: [PATCH] Change message of mbr --- mbr.asm | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/mbr.asm b/mbr.asm index 0db3b5a..7d7f71c 100644 --- a/mbr.asm +++ b/mbr.asm @@ -55,8 +55,7 @@ println: pop bp ret -hello db 'Hello world', 0 -name db 'This is a name', 0 +hello db 'Booting matOs', 0 main: sti ; enable virtual interupts @@ -68,10 +67,6 @@ main: call println add sp, 2 - push name - call println - add sp, 2 - ; Switch in 32bits Protected mode ; Activate A20 http://wiki.osdev.org/A20_Line to be able to access more than 1Mb memory