From 7ab45fdea5af5a0c22954018b7991b07aa67e201 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20D=C3=B6rfler?= Date: Tue, 13 Apr 2004 16:54:42 +0000 Subject: [PATCH] Removed unused welcome message print code. git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7198 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/kernel/boot/platform/bios_ia32/shell.S | 27 ---------------------- 1 file changed, 27 deletions(-) diff --git a/src/kernel/boot/platform/bios_ia32/shell.S b/src/kernel/boot/platform/bios_ia32/shell.S index 26712fafa2..c9e9bcf84b 100644 --- a/src/kernel/boot/platform/bios_ia32/shell.S +++ b/src/kernel/boot/platform/bios_ia32/shell.S @@ -47,9 +47,6 @@ bfs_start: push %ds pop %es -// mov $hello_string, %si -// call printString - cli // no interrupts please call enable_a20 // enable a20 gate @@ -82,26 +79,6 @@ _protected_code_segment: //-------------------------------------------------------------- -.code16 -printString: - // write a 0 terminated string from ds:si to screen - // si - string to be printed - // changes al, ah - push %bx -_printstart: - lodsb - test %al, %al - jz _printdone - mov $0x0e, %ah - mov $0x0007, %bx - int $0x10 - jmp _printstart -_printdone: - pop %bx - ret - -//-------------------------------------------------------------- - /** Enables the a20 gate. It will first try to enable it through * the BIOS, and, if that fails, will use the old style AT mechanism * using the keyboard port. @@ -136,10 +113,6 @@ _a20_done: //-------------------------------------------------------------- -hello_string: - .byte 10, 13 - .string "Welcome to the OpenBeOS Bootloader" - /* global data table */ gdt: