mirror of
https://github.com/pevans/erc-c.git
synced 2024-11-17 15:07:10 +00:00
11 lines
191 B
C
11 lines
191 B
C
#ifndef _APPLE2_DRAW_H_
|
|
#define _APPLE2_DRAW_H_
|
|
|
|
#include "apple2.h"
|
|
#include "vm_bits.h"
|
|
|
|
extern void apple2_draw_pixel(apple2 *, vm_16bit);
|
|
extern void apple2_draw_40col(apple2 *);
|
|
|
|
#endif
|