|
|
|
|
|
by 6502nerdface
3868 days ago
|
|
Yes! Also goes by part number 74LS165 (edit: actually they are just similar) [1]. Here's how to use it in your game code:
http://wiki.nesdev.com/w/index.php/Standard_controller Basically you write high voltage to the "strobe" line of the shift register in the controller, putting it in a state where it continuously updates to reflect current button presses. Once you remove the high voltage, it "freezes" its 8-bit state representing whatever combination of the eight buttons were last depressed, and then you make 8 successive reads from the shift register's serial line, reading off the state 1 bit at a time. It's up to the game software to be robust against bouncing, as well as against a tricky hardware bug where the DMC module of the NES's audio processing unit conflicts with the latching mechanism used by the controller's serial line. Needless to say, this must all be emulated by accurate NES emulators, too :) [1] http://www.datasheetcatalog.com/info_redirect/datasheet/phil... |
|
http://www.nxp.com/documents/data_sheet/HEF4021B.pdf http://www.nxp.com/documents/data_sheet/74HC_HCT165.pdf (pinout for LS is the same)