Hello, World now working...
[profile/ivi/syslinux.git] / memdisk / conio.c
1 #ident "$Id$"
2 /* ----------------------------------------------------------------------- *
3  *   
4  *   Copyright 2001 H. Peter Anvin - All Rights Reserved
5  *
6  *   This program is free software; you can redistribute it and/or modify
7  *   it under the terms of the GNU General Public License as published by
8  *   the Free Software Foundation, Inc., 53 Temple Place Ste 330,
9  *   Bostom MA 02111-1307, USA; either version 2 of the License, or
10  *   (at your option) any later version; incorporated herein by reference.
11  *
12  * ----------------------------------------------------------------------- */
13
14 /*
15  * conio.c
16  *
17  * Output to the screen
18  */
19
20 #include <stdint.h>
21 #include "conio.h"
22
23 int putchar(int ch)
24 {
25   if ( ch == '\n' ) {
26     /* \n -> \r\n */
27     asm volatile("movw $0x0e0d,%%ax ; "
28                  "movw $0x0007,%%bx ; "
29                  "int $0x10"
30                  ::: "eax", "ebx", "ecx", "edx",
31                  "esi", "edi", "ebp");
32   }
33
34   asm volatile("movw $0x0007,%%bx ; "
35                "int $0x10"
36                :: "a" ((uint16_t)(0x0e00|(ch&0xff)))
37                : "eax", "ebx", "ecx", "edx",
38                "esi", "edi", "ebp");
39
40   return ch;
41 }
42
43 int puts(const char *s)
44 {
45   int count = 0;
46
47   while ( *s ) {
48     putchar(*s);
49     count++;
50     s++;
51   }
52
53   return count;
54 }