shuichitakano / pico-infones

infones for pico

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

pico-infones

This software is a port of InfoNES, a NES emulator, for the Raspberry Pi Pico, and supports video and audio output over HDMI. The code for HDMI output is based on PicoDVI.

Wiring

The default pinout of the HDMI connector follows the Pico-DVI-Sock. Some TVs will not recognize the signal unless you input 5V to pin 18 of the HDMI connector.

The controller should be connected to the micro USB port of the Raspberry Pi Pico via an OTG adapter.

Supply +5V to VBUS (pin 40) as power source. Be careful not to connect the power supply at the same time as the PC connection, for example when writing programs or ROMs.

ROM

The ROM should be placed in some way from 0x10080000, and can be easily transferred using picotool.

picotool load foo.nes -t bin -o 0x10080000

You can either place the .nes files directly or place a tar file containing multiple .nes files. The maximum file size that can be used is 1.5 MiB for the standard Raspberry Pi Pico.

Controller

The following controllers are supported.

  • BUFFALO BGC-FC801
  • SONY DUALSHOCK 4
  • SONY DualSense

There are several special functions assigned to button combinations.

Buttton Function
SELECT + START Reset the emulator
SELECT + LEFT / RIGHT Select the next ROM
SELECT + UP / DOWN Switch the screen mode
SELECT + A / B Toggle rapid-fire

Battery backed SRAM

If there is a game with battery-backed memory, 8K bytes per title will be allocated from address 0x10080000 in the reverse direction. Writing to Flash ROM is done at the timing when reset or ROM selection is made.

About

infones for pico

License:GNU General Public License v3.0


Languages

Language:C++ 93.1%Language:C 6.5%Language:CMake 0.4%Language:Makefile 0.1%