1
0
mirror of https://github.com/sehugg/8bitworkshop.git synced 2024-06-16 12:29:28 +00:00
8bitworkshop/presets/c64/common.h

19 lines
281 B
C
Raw Normal View History

2020-02-02 18:17:31 +00:00
#ifndef _COMMON_H
#define _COMMON_H
#include <c64.h>
#include <stdint.h>
typedef uint8_t byte;
typedef uint16_t word;
typedef int8_t sbyte;
typedef enum { false, true } bool;
#define COLS 40
#define ROWS 25
void raster_wait(unsigned char line);
void wait_vblank(void);
#endif