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'ten fazla konu seçemezsiniz
Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
|
- #ifndef NESE_TIMER_H_
- #define NESE_TIMER_H_
-
- #include <stdint.h>
-
-
- #define US_PER_S (1000U * 1000U)
-
-
- typedef int64_t time_us;
-
-
- time_us time_now(void);
-
- void time_sleep(time_us);
-
- time_us time_sleep_until(time_us);
-
-
- #endif // NESE_TIME_H_
|