Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

konami/konamigv: Remove unused inputs from Tokimeki Memorial Oshiete Your Heart games #12245

Merged
merged 1 commit into from
Apr 14, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions src/mame/konami/konamigv.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1139,9 +1139,16 @@ void tokimeki_state::tokimeki_device_check_w(int state)
static INPUT_PORTS_START( tmosh )
PORT_INCLUDE( konamigv )

PORT_MODIFY("P1")
PORT_BIT( 0xffffc3e0, IP_ACTIVE_LOW, IPT_UNUSED )

PORT_MODIFY("P2")
PORT_BIT( 0xfffffbff, IP_ACTIVE_LOW, IPT_UNUSED )
PORT_BIT( 0x00000400, IP_ACTIVE_HIGH, IPT_CUSTOM ) PORT_CUSTOM_MEMBER(tokimeki_state, tokimeki_device_check_r)

PORT_MODIFY("P3_P4")
PORT_BIT( 0xffffffff, IP_ACTIVE_LOW, IPT_UNUSED )

PORT_MODIFY("EEPROMOUT")
PORT_BIT( 0x10, IP_ACTIVE_HIGH, IPT_OUTPUT ) PORT_WRITE_LINE_MEMBER(tokimeki_state, tokimeki_device_check_w)

Expand Down