/* basic.h : Emulate BASIC functions */

#define draw(x,y) (bbc_draw(x,y))
#define move(x,y) (bbc_move(x,y))
#define moveD(x,y) (bbc_move((int)(x), (int)(y)))
#define gcol(a,c) (bbc_gcol(a,c))
#define vdu(c) (bbc_vdu(c))

int bbc_time(void);
void draw_line(int x1, int y1, int x2, int y2);
void draw_rect(int x1, int y1, int x2, int y2);
