1
0
mirror of git://projects.qi-hardware.com/xburst-tools.git synced 2024-11-01 18:31:54 +02:00
xburst-tools/qiboot/src/kboot.h

19 lines
375 B
C
Raw Normal View History

#ifndef __KBOOT_H__
#define __KBOOT_H__
#include <stdarg.h>
#include "serial.h"
#include "ctype.h"
int printk(const char *fmt, ...);
int vsprintf(char *buf, const char *fmt, va_list args);
int puts(const char *string);
void printhex(unsigned char v);
void print32(unsigned int u);
void hexdump(unsigned char *start, int len);
unsigned int _ntohl(unsigned int n);
#endif