2 /* ----------------------------------------------------------------------- *
4 * Copyright 2001 H. Peter Anvin - All Rights Reserved
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.
12 * ----------------------------------------------------------------------- */
17 * Output to the screen
26 putchar('\r'); /* \n -> \r\n */
28 asm volatile("int $0x10"
29 :: "a" ((uint16_t)(0x0e00|(ch&0xff))),
31 : "eax", "ebx", "ecx", "edx",
37 int puts(const char *s)