Subversion Repositories HelenOS

Rev

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

Rev 77 Rev 115
Line 28... Line 28...
28
 
28
 
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
 
34
 
34
 
35
 
35
static char digits[] = "0123456789abcdef"; /**< Hexadecimal characters */
36
static char digits[] = "0123456789abcdef"; /**< Hexadecimal characters */
36
static spinlock_t printflock;              /**< printf spinlock */
37
static spinlock_t printflock;              /**< printf spinlock */
37
 
38