Exciting Boxing Punching Bag: Difference between revisions

From NESdev Wiki
Jump to navigationJump to search
(Created page with "This punching bag/doll is used in a single game: *''Exciting Boxing'' It contains 8 sensors, each returned as a single bit when reading $4017: *Left/Right Hook *Left/Right J...")
 
No edit summary
Line 31: Line 31:
     | +---- Move Left (A = 0), Right Jab (A = 1)
     | +---- Move Left (A = 0), Right Jab (A = 1)
     +------ Right Hook (A = 0), Straight (A = 1)
     +------ Right Hook (A = 0), Straight (A = 1)
== See Also ==
* [//famicomworld.com/system/controllers/exciting-boxing/ image and english description]

Revision as of 23:18, 14 October 2017

This punching bag/doll is used in a single game:

  • Exciting Boxing


It contains 8 sensors, each returned as a single bit when reading $4017:

  • Left/Right Hook
  • Left/Right Jab
  • Left/Right Move
  • Straight
  • Body

Hardware interface

Input ($4016 write)

7  bit  0
---- ----
xxxx xxAx
       |
       +- Select output sensors (see below)


Output ($4017 read)

7  bit  0
---- ----
xxxE DCBx
   | |||
   | ||+-- Left Hook (A = 0), Left Jab (A = 1)
   | |+--- Move Right (A = 0), Body (A = 1)
   | +---- Move Left (A = 0), Right Jab (A = 1)
   +------ Right Hook (A = 0), Straight (A = 1)

See Also