You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
227 B
12 lines
227 B
#ifndef _x86_h_
|
|
#define _x86_h_
|
|
|
|
#define CARD8 unsigned char
|
|
#define CARD16 unsigned short
|
|
#define CARD32 unsigned int
|
|
#define pointer void *
|
|
#define Bool int
|
|
#define TRUE 1
|
|
#define FALSE 0
|
|
#define printk printf
|
|
#endif
|
|
|