1
0
mirror of https://github.com/sehugg/8bitworkshop.git synced 2024-05-28 08:41:30 +00:00
8bitworkshop/presets/c64/common.h
2022-08-09 13:28:55 -05:00

23 lines
344 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
#define DEFAULT_SCREEN ((void*)0x400)
void raster_wait(byte line);
void wait_vblank(void);
char* get_vic_bank_start(void);
#endif