BizHawk/wonderswan/wswan.h

14 lines
157 B
C
Raw Normal View History

2014-05-30 05:09:54 +00:00
#ifndef __WSWAN_H
#define __WSWAN_H
#include <mednafen/types.h>
namespace MDFN_IEN_WSWAN
{
#define mBCD(value) (((value)/10)<<4)|((value)%10)
}
#endif