mirror of
https://github.com/libretro/RetroArch
synced 2025-01-04 02:50:05 +00:00
10 lines
117 B
C
10 lines
117 B
C
#include <stdint.h>
|
|
#include "CpuArch.h"
|
|
|
|
Bool CPU_Is_InOrder(void);
|
|
|
|
Bool CPU_Is_InOrder(void)
|
|
{
|
|
return False;
|
|
}
|