mirror of
https://github.com/rkujawa/rk65c02.git
synced 2024-12-12 10:30:23 +00:00
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_ */
|