Simple console I/O, mostly for debugging.
[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 "conio.h"
21
22 int putchar(int ch)
23 {
24   if ( ch == '\n' )
25     putchar('\r');              /* \n -> \r\n */
26
27   asm volatile("int $0x10"
28                :: "a" (0x1400|(ch&0xff)),
29                "b" (0x07)
30                : "eax", "ebx", "ecx", "edx",
31                "esi", "edi", "ebp");
32
33   return ch;
34 }
35
36 int puts(const char *s)
37 {
38   int count = 0;
39
40   while ( *s ) {
41     putchar(*s);
42     count++;
43   }
44
45   return count;
46 }