blob: ee418949dcb92aca117593192a809b2e225a2376 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
// license:BSD-3-Clause
// copyright-holders:smf
/**********************************************************************
Commodore 64 User Port emulation
Copyright MESS Team.
Visit http://mamedev.org for licensing and usage restrictions.
**********************************************************************
GND 1 A GND
+5V 2 B /FLAG2
/RESET 3 C PB0
CNT1 4 D PB1
SP1 5 E PB2
CNT2 6 F PB3
SP2 7 H PB4
/PC2 8 J PB5
ATN 9 K PB6
+9VAC 10 L PB7
+9VAC 11 M PA2
GND 12 N GND
**********************************************************************/
#pragma once
#ifndef __C64_USER_PORT__
#define __C64_USER_PORT__
#include "bus/pet/user.h"
SLOT_INTERFACE_EXTERN( c64_user_port_cards );
#endif
|