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개 이상의 토픽을 선택하실 수 없습니다.
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- #ifndef NESE_COMPAT_IMPL_H_
- #define NESE_COMPAT_IMPL_H_
-
-
- #ifdef _WIN32
-
- #include <direct.h>
-
- int mkdir_impl(const char* dir) {
- return _mkdir(dir);
- }
-
- #else // !_WIN32
-
- #include <sys/stat.h>
-
- int mkdir_impl(const char* dir) {
- return mkdir(dir, 0777);
- }
-
- #endif // _WIN32
-
-
- #endif // NESE_COMPAT_IMPL_H_
|