1# $NetBSD: files.clockport,v 1.2 2012/05/15 17:35:43 rkujawa Exp $ 2 3define clockportbus {} 4 5define clockport_common {} 6file arch/amiga/clockport/clockport_common.c clockport_common 7 8# Generic clockport (can be attached on top of Zorro boards) 9device gencp: clockportbus, clockport_common 10file arch/amiga/clockport/gencp.c gencp needs-flag 11 12# A1200 clockport 13device a1k2cp: clockportbus, clockport_common 14attach a1k2cp at mainbus 15file arch/amiga/clockport/a1k2cp.c a1k2cp 16 17# X-Surf clockports 18attach gencp at xsurfbus with gencp_xsurf 19file arch/amiga/clockport/gencp_xsurf.c gencp_xsurf needs-flag 20 21# more zbus clockports should be added, like: 22# Highway clockport 23# attach gencp at highwaybus with gencp_highway 24# file arch/amiga/clockport/gencp_highway.c 25# 26# also for clockports like the second one on A604: 27# device obio at mainbus {[address = -1]} 28# attach gencp at obio with gencp_obio 29# file arch/amiga/clockport/gencp_obio.c 30# 31# etc. 32 33device clockport {} 34attach clockport at clockportbus 35file arch/amiga/clockport/clockport.c clockport 36 37# Individual Computers SilverSurfer serial 38attach com at clockport with com_ss 39file arch/amiga/clockport/com_ss.c 40 41 42