1
0
mirror of https://github.com/sehugg/8bitworkshop.git synced 2024-06-15 21:29:28 +00:00
8bitworkshop/presets/c64/common.h
2020-02-03 22:17:27 -06:00

19 lines
281 B
C

#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