Subversion Repositories HelenOS

Rev

Rev 2465 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2465 Rev 2468
Line 46... Line 46...
46
 *
46
 *
47
 * @param ch Character to be printed.
47
 * @param ch Character to be printed.
48
 */
48
 */
49
static void putc(char ch)
49
static void putc(char ch)
50
{
50
{
51
    *((volatile char *)PUTC_ADDRESS) = ch;
51
    *((volatile char *) PUTC_ADDRESS) = ch;
52
}
52
}
53
 
53
 
54
 
54
 
55
/** Prints a string to the console.
55
/** Prints a string to the console.
56
 *
56
 *