BizHawk/wonderswan/wswan.h

14 lines
157 B
C++

#ifndef __WSWAN_H
#define __WSWAN_H
#include <mednafen/types.h>
namespace MDFN_IEN_WSWAN
{
#define mBCD(value) (((value)/10)<<4)|((value)%10)
}
#endif