1
0
mirror of https://github.com/pevans/erc-c.git synced 2024-07-04 09:29:26 +00:00
erc-c/include/apple2.draw.h

11 lines
191 B
C
Raw Normal View History

2017-12-22 21:48:48 +00:00
#ifndef _APPLE2_DRAW_H_
#define _APPLE2_DRAW_H_
2017-12-26 22:43:08 +00:00
#include "apple2.h"
#include "vm_bits.h"
2017-12-22 21:48:48 +00:00
extern void apple2_draw_pixel(apple2 *, vm_16bit);
2018-01-18 22:21:25 +00:00
extern void apple2_draw_40col(apple2 *);
2017-12-22 21:48:48 +00:00
#endif