1
0
mirror of https://github.com/rkujawa/rk65c02.git synced 2024-06-26 19:29:33 +00:00
rk65c02/src/device_fb.h
Radosław Kujawa 85a53f89c8 Start implementation of display emulation.
Something like a character RAM for a start. When 65C02 writes into
this space, a callback will be executed that would allow redrawing
the emulated screen. Multiple backends can be supported this way.
2018-03-25 18:01:15 +02:00

10 lines
161 B
C

#ifndef _DEVICE_RAM_H_
#define _DEVICE_RAM_H_
#include "device.h"
device_t * device_fb_init();
void device_fb_finish(device_t *);
#endif /* _DEVICE_RAM_H_ */