Subversion Repositories HelenOS-historic

Rev

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

Rev 181 Rev 195
Line 29... Line 29...
29
#include <putchar.h>
29
#include <putchar.h>
30
#include <print.h>
30
#include <print.h>
31
#include <synch/spinlock.h>
31
#include <synch/spinlock.h>
32
#include <arch/arg.h>
32
#include <arch/arg.h>
33
#include <arch/asm.h>
33
#include <arch/asm.h>
-
 
34
#include <arch.h>
34
 
35
 
35
 
36
 
36
static char digits[] = "0123456789abcdef"; /**< Hexadecimal characters */
37
static char digits[] = "0123456789abcdef"; /**< Hexadecimal characters */
37
static spinlock_t printflock;              /**< printf spinlock */
38
static spinlock_t printflock;              /**< printf spinlock */
38
 
39