mirror of
https://github.com/CTCaer/RetroArch.git
synced 2025-02-06 03:28:20 +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;
|
|
}
|