NESe (pronounced "Nessie") is a NES emulator based on the e6502 emulator, also written in C with a focus on speed and portability for use on embedded platforms, especially ARM.
Nie możesz wybrać więcej, niż 25 tematów
Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
|
- #ifndef NESE_FILEMAP_H_
- #define NESE_FILEMAP_H_
-
-
- void* map_file(FILE* file, int size);
-
- void unmap_file(void* mem, int size);
-
-
- #endif // NESE_FILEMAP_H_
|