apple2idiot/examples/weather/apple2-cc65/src/globals.h
2021-09-18 22:50:44 -07:00

18 lines
275 B
C

#ifndef _GLOBALS_H
#define _GLOBALS_H
#define ASCII_0 48
#define ASCII_1 49
#define ASCII_2 50
#define ASCII_3 51
#define ASCII_4 52
#define SIZE_X 40
#define SIZE_Y 24
#define COMMAND_SET_COUNTRY 200
#define COMMAND_SET_CITY 201
#define COMMAND_FETCH_WEATHER 205
#endif