pi1541/src/types.h

27 lines
377 B
C
Raw Normal View History

2018-05-20 04:53:34 +00:00
#ifndef types_h
#define types_h
#include <stddef.h>
#include <uspi/types.h>
2018-05-20 04:53:34 +00:00
#include "integer.h"
typedef unsigned long long u64;
typedef signed long long s64;
typedef enum {
LCD_UNKNOWN,
LCD_1306_128x64,
LCD_1306_128x32,
LCD_1106_128x64,
} LCD_MODEL;
2018-05-20 04:53:34 +00:00
typedef enum {
EXIT_UNKNOWN,
EXIT_RESET,
EXIT_CD,
EXIT_KEYBOARD
} EXIT_TYPE;
2018-05-20 04:53:34 +00:00
#endif