summaryrefslogtreecommitdiffstats
path: root/libdha/sysdep/AsmMacros_alpha.h
diff options
context:
space:
mode:
authorben <ben@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-04-06 15:20:49 +0000
committerben <ben@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-04-06 15:20:49 +0000
commit51ba40dcd64518c8d5f9ce586171c8fb347a42c0 (patch)
tree590b1ce6d17f2126b67d1a5cb1576cdd7e8dea5c /libdha/sysdep/AsmMacros_alpha.h
parent3099d0da16505cbc0aaab34f9299404e9ec19241 (diff)
downloadmpv-51ba40dcd64518c8d5f9ce586171c8fb347a42c0.tar.bz2
mpv-51ba40dcd64518c8d5f9ce586171c8fb347a42c0.tar.xz
merged libdha and libvidix, moved all files from libdha to vidix directory
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22918 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libdha/sysdep/AsmMacros_alpha.h')
-rw-r--r--libdha/sysdep/AsmMacros_alpha.h26
1 files changed, 0 insertions, 26 deletions
diff --git a/libdha/sysdep/AsmMacros_alpha.h b/libdha/sysdep/AsmMacros_alpha.h
deleted file mode 100644
index 482b59000e..0000000000
--- a/libdha/sysdep/AsmMacros_alpha.h
+++ /dev/null
@@ -1,26 +0,0 @@
-/*
- This file is based on:
- $XFree86: xc/programs/Xserver/hw/xfree86/drivers/chips/util/AsmMacros.h,v 1.1 2001/11/16 21:13:34 tsi Exp $
- Modified for readability by Nick Kurshev
-*/
-
-#ifndef __ASM_MACROS_ALPHA_H
-#define __ASM_MACROS_ALPHA_H
-#if defined (linux)
-#include <sys/io.h>
-#elif defined (__FreeBSD__)
-#include <sys/types.h>
-extern void outb(u_int32_t port, u_int8_t val);
-extern void outw(u_int32_t port, u_int16_t val);
-extern void outl(u_int32_t port, u_int32_t val);
-extern u_int8_t inb(u_int32_t port);
-extern u_int16_t inw(u_int32_t port);
-extern u_int32_t inl(u_int32_t port);
-#else
-#error This stuff is not ported on your system
-#endif
-
-#define intr_disable()
-#define intr_enable()
-
-#endif