2017-12-22 15:48:48 -06:00
|
|
|
#ifndef _APPLE2_DRAW_H_
|
|
|
|
#define _APPLE2_DRAW_H_
|
|
|
|
|
2018-04-07 00:26:31 -05:00
|
|
|
#include "apple2/apple2.h"
|
2017-12-26 16:43:08 -06:00
|
|
|
#include "vm_bits.h"
|
|
|
|
|
2018-03-07 16:20:29 -06:00
|
|
|
extern void apple2_draw(apple2 *);
|
2018-01-18 16:21:25 -06:00
|
|
|
extern void apple2_draw_40col(apple2 *);
|
2018-03-13 16:08:31 -05:00
|
|
|
extern void apple2_draw_hires(apple2 *);
|
2018-03-13 15:55:43 -05:00
|
|
|
extern void apple2_draw_lores(apple2 *);
|
2018-03-07 16:20:29 -06:00
|
|
|
extern void apple2_draw_pixel(apple2 *, vm_16bit);
|
2017-12-22 15:48:48 -06:00
|
|
|
|
|
|
|
#endif
|