mirror of
https://github.com/rkujawa/rk65c02.git
synced 2024-12-11 18:49:16 +00:00
85a53f89c8
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.
10 lines
161 B
C
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_ */
|