├── .github └── FUNDING.yml ├── Makefile ├── README.md ├── board ├── BoardOutline.gbr ├── Bottom.gbr ├── BottomMask.gbr ├── BottomSilk.gbr ├── Through.drl ├── Top.gbr ├── TopMask.gbr ├── TopSilk.gbr ├── nes2wii.dch ├── nes2wii.dip └── nes2wii.png ├── defines.h ├── gamepads.c ├── gamepads.h ├── main.c ├── nes2wii.h ├── nes2wii.hex ├── wiimote.c ├── wiimote.h └── wm_crypto.h /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterM/nes2wii/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterM/nes2wii/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterM/nes2wii/HEAD/README.md -------------------------------------------------------------------------------- /board/BoardOutline.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterM/nes2wii/HEAD/board/BoardOutline.gbr -------------------------------------------------------------------------------- /board/Bottom.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterM/nes2wii/HEAD/board/Bottom.gbr -------------------------------------------------------------------------------- /board/BottomMask.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterM/nes2wii/HEAD/board/BottomMask.gbr -------------------------------------------------------------------------------- /board/BottomSilk.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterM/nes2wii/HEAD/board/BottomSilk.gbr -------------------------------------------------------------------------------- /board/Through.drl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterM/nes2wii/HEAD/board/Through.drl -------------------------------------------------------------------------------- /board/Top.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterM/nes2wii/HEAD/board/Top.gbr -------------------------------------------------------------------------------- /board/TopMask.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterM/nes2wii/HEAD/board/TopMask.gbr -------------------------------------------------------------------------------- /board/TopSilk.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterM/nes2wii/HEAD/board/TopSilk.gbr -------------------------------------------------------------------------------- /board/nes2wii.dch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterM/nes2wii/HEAD/board/nes2wii.dch -------------------------------------------------------------------------------- /board/nes2wii.dip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterM/nes2wii/HEAD/board/nes2wii.dip -------------------------------------------------------------------------------- /board/nes2wii.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterM/nes2wii/HEAD/board/nes2wii.png -------------------------------------------------------------------------------- /defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterM/nes2wii/HEAD/defines.h -------------------------------------------------------------------------------- /gamepads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterM/nes2wii/HEAD/gamepads.c -------------------------------------------------------------------------------- /gamepads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterM/nes2wii/HEAD/gamepads.h -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterM/nes2wii/HEAD/main.c -------------------------------------------------------------------------------- /nes2wii.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterM/nes2wii/HEAD/nes2wii.h -------------------------------------------------------------------------------- /nes2wii.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterM/nes2wii/HEAD/nes2wii.hex -------------------------------------------------------------------------------- /wiimote.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterM/nes2wii/HEAD/wiimote.c -------------------------------------------------------------------------------- /wiimote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterM/nes2wii/HEAD/wiimote.h -------------------------------------------------------------------------------- /wm_crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterM/nes2wii/HEAD/wm_crypto.h --------------------------------------------------------------------------------