当前位置: 首页>>代码示例>>C++>>正文


C++ INPUT_PORTS_NAME函数代码示例

本文整理汇总了C++中INPUT_PORTS_NAME函数的典型用法代码示例。如果您正苦于以下问题:C++ INPUT_PORTS_NAME函数的具体用法?C++ INPUT_PORTS_NAME怎么用?C++ INPUT_PORTS_NAME使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。


在下文中一共展示了INPUT_PORTS_NAME函数的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。

示例1: INPUT_PORTS_NAME

INPUT_PORTS_END

ioport_constructor nes_karaokestudio_device::device_input_ports() const
{
	return INPUT_PORTS_NAME( karaoke_mic );
}
开发者ID:Enverex,项目名称:mame,代码行数:6,代码来源:karastudio.cpp

示例2: INPUT_PORTS_NAME

INPUT_PORTS_END

ioport_constructor isa8_lpt_device::device_input_ports() const
{
	return INPUT_PORTS_NAME( lpt_dsw );
}
开发者ID:RafTacker,项目名称:mame,代码行数:6,代码来源:lpt.cpp

示例3: INPUT_PORTS_NAME

INPUT_PORTS_END

ioport_constructor geneve_busmouse_device::device_input_ports() const
{
	return INPUT_PORTS_NAME( busmouse );
}
开发者ID:Dagarman,项目名称:mame,代码行数:6,代码来源:busmouse.cpp

示例4: INPUT_PORTS_NAME

INPUT_PORTS_END

ioport_constructor ti99_datamux_device::device_input_ports() const
{
	return INPUT_PORTS_NAME(datamux);
}
开发者ID:DragonMinded,项目名称:mame,代码行数:6,代码来源:datamux.cpp

示例5: INPUT_PORTS_NAME

ioport_constructor aha1542b_device::device_input_ports() const
{
	return INPUT_PORTS_NAME(aha1542b);
}
开发者ID:fesh0r,项目名称:mame-full,代码行数:4,代码来源:aha1542b.cpp

示例6: INPUT_PORTS_NAME

INPUT_PORTS_END

ioport_constructor side116_device::device_input_ports() const
{
	return INPUT_PORTS_NAME( side116 );
}
开发者ID:system11b,项目名称:mame,代码行数:6,代码来源:side116.cpp

示例7: INPUT_PORTS_NAME

INPUT_PORTS_END

ioport_constructor a590_device::device_input_ports() const
{
	return INPUT_PORTS_NAME( a590_pcb );
}
开发者ID:Robbbert,项目名称:store1,代码行数:6,代码来源:a590.cpp

示例8: INPUT_PORTS_NAME

INPUT_PORTS_END

ioport_constructor pc_basic_joy_device::device_input_ports() const
{
	return INPUT_PORTS_NAME( pc_joystick );
}
开发者ID:robsonfr,项目名称:mame,代码行数:6,代码来源:pc_joy.cpp

示例9: INPUT_PORTS_NAME

ioport_constructor at_keyboard_controller_device::device_input_ports() const
{
	return INPUT_PORTS_NAME( at_keybc );
}
开发者ID:JensGrabner,项目名称:mame,代码行数:4,代码来源:at_keybc.c

示例10: INPUT_PORTS_NAME

INPUT_PORTS_END

ioport_constructor qx10_keyboard_device::device_input_ports() const
{
	return INPUT_PORTS_NAME(qx10_keyboard);
}
开发者ID:Robbbert,项目名称:store1,代码行数:6,代码来源:qx10kbd.cpp

示例11: INPUT_PORTS_NAME

ioport_constructor isa8_ibm_mfc_device::device_input_ports() const
{
	return INPUT_PORTS_NAME( ibm_mfc );
}
开发者ID:jiangzhonghui,项目名称:mame,代码行数:4,代码来源:ibm_mfc.c

示例12: INPUT_PORTS_NAME

INPUT_PORTS_END

ioport_constructor serial_printer_device::device_input_ports() const
{
	return INPUT_PORTS_NAME(serial_printer);
}
开发者ID:DragonMinded,项目名称:mame,代码行数:6,代码来源:printer.cpp

示例13: INPUT_PORTS_NAME

ioport_constructor pc_kbd_keytronic_pc3270_at_device::device_input_ports() const
{
	return INPUT_PORTS_NAME( kb_keytronic_at );
}
开发者ID:broftkd,项目名称:mame,代码行数:4,代码来源:keytro.cpp

示例14: INPUT_PORTS_NAME

ioport_constructor sc499_device::device_input_ports() const
{
	return INPUT_PORTS_NAME( sc499_port );
}
开发者ID:MoochMcGee,项目名称:mame,代码行数:4,代码来源:sc499.cpp

示例15: INPUT_PORTS_NAME

ioport_constructor dmv_k235_device::device_input_ports() const
{
	return INPUT_PORTS_NAME( dmv_k235 );
}
开发者ID:BrandoCommando,项目名称:mame,代码行数:4,代码来源:k230.c


注:本文中的INPUT_PORTS_NAME函数示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。