A modern Music Player Daemon based on Rockbox open source high quality audio player
libadwaita
audio
rust
zig
deno
mpris
rockbox
mpd
1
2#ifndef __FASTMEM_H__
3#define __FASTMEM_H__
4
5
6#include "defs.h"
7#include "mem.h"
8
9
10byte readb(int a) ICODE_ATTR;
11void writeb(int a, byte b) ICODE_ATTR;
12int readw(int a) ICODE_ATTR;
13void writew(int a, int w) ICODE_ATTR;
14byte readhi(int a) ICODE_ATTR;
15void writehi(int a, byte b) ICODE_ATTR;
16
17#endif