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文字以内のものにしてください。

21 行
399B

  1. #ifndef NESE_PORT_H_
  2. #define NESE_PORT_H_
  3. #include <stdio.h>
  4. #include "input.h"
  5. int nese_frame_start(void*, uint8_t background);
  6. int nese_line_ready(void*, uint8_t* buffer, int line);
  7. int nese_frame_ready(void*);
  8. int nese_update_input(void*, nes_Input*);
  9. int nese_get_audio_frequency(void*);
  10. void* nese_alloc_gpu(int);
  11. void* nese_alloc_cpu(int);
  12. void* nese_alloc(int);
  13. #endif // NESE_PORT_H_