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.
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

11 行
155B

  1. #ifndef NESE_FILEMAP_H_
  2. #define NESE_FILEMAP_H_
  3. void* map_file(FILE* file, int size);
  4. void unmap_file(void* mem, int size);
  5. #endif // NESE_FILEMAP_H_