1
0
mirror of https://github.com/pevans/erc-c.git synced 2024-06-02 07:41:32 +00:00
erc-c/include/apple2/draw.h
2018-04-06 20:27:47 -05:00

14 lines
308 B
C

#ifndef _APPLE2_DRAW_H_
#define _APPLE2_DRAW_H_
#include "apple2.h"
#include "vm_bits.h"
extern void apple2_draw(apple2 *);
extern void apple2_draw_40col(apple2 *);
extern void apple2_draw_hires(apple2 *);
extern void apple2_draw_lores(apple2 *);
extern void apple2_draw_pixel(apple2 *, vm_16bit);
#endif