mirror of
https://github.com/pevans/erc-c.git
synced 2024-11-01 04:04:28 +00:00
11 lines
200 B
C
11 lines
200 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_text(apple2 *, vm_16bit);
|
|
|
|
#endif
|