From d4231dd9c8e7af5646b4cab9d2cb897aff96bf2d Mon Sep 17 00:00:00 2001 From: Martin Reindl Date: Mon, 27 Dec 2004 21:02:27 +0000 Subject: unused ok miod@ --- sys/arch/mac68k/include/pio.h | 41 ----------------------------------------- 1 file changed, 41 deletions(-) delete mode 100644 sys/arch/mac68k/include/pio.h (limited to 'sys/arch') diff --git a/sys/arch/mac68k/include/pio.h b/sys/arch/mac68k/include/pio.h deleted file mode 100644 index afca5eabe2e..00000000000 --- a/sys/arch/mac68k/include/pio.h +++ /dev/null @@ -1,41 +0,0 @@ -/* $OpenBSD: pio.h,v 1.4 2001/01/15 19:50:38 deraadt Exp $ */ -/* $NetBSD: pio.h,v 1.3 1994/10/26 08:46:38 cgd Exp $ */ - -/* - * Mach Operating System - * Copyright (c) 1990 Carnegie-Mellon University - * All rights reserved. The CMU software License Agreement specifies - * the terms and conditions for use and redistribution. - */ - -#ifndef _MAC68K_PIO_H_ -#define _MAC68K_PIO_H_ - -#define inl(y) \ -({ unsigned long _tmp__; \ - __asm__ __volatile__("inl %1, %0" : "=a" (_tmp__) : "d" ((unsigned short)(y))); \ - _tmp__; }) - -#define inw(y) \ -({ unsigned short _tmp__; \ - __asm__ __volatile__(".byte 0x66; inl %1, %0" : "=a" (_tmp__) : "d" ((unsigned short)(y))); \ - _tmp__; }) - -#define inb(y) \ -({ unsigned char _tmp__; \ - __asm__ __volatile__("inb %1, %0" : "=a" (_tmp__) : "d" ((unsigned short)(y))); \ - _tmp__; }) - - -#define outl(x, y) \ -{ __asm__ __volatile__("outl %0, %1" : : "a" (y) , "d" ((unsigned short)(x))); } - - -#define outw(x, y) \ -{__asm__ __volatile__(".byte 0x66; outl %0, %1" : : "a" ((unsigned short)(y)) , "d" ((unsigned short)(x))); } - - -#define outb(x, y) \ -{ __asm__ __volatile__("outb %0, %1" : : "a" ((unsigned char)(y)) , "d" ((unsigned short)(x))); } - -#endif /* _MAC68K_PIO_H_ */ -- cgit v1.2.3