summaryrefslogtreecommitdiff
path: root/memdump/io.h
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2007-09-25 16:38:31 -0700
committerH. Peter Anvin <hpa@zytor.com>2007-09-25 16:38:31 -0700
commit223f5298620a3b3be9fbd206e2a3fbb388487da0 (patch)
tree286635488927e801c646d80e21d6a194261ed75b /memdump/io.h
parent57556d8f612128679464667ce124ddc611795db2 (diff)
parenta81fb89a445ae0dca286c861d8d51f705533df0d (diff)
downloadsyslinux-3.60-pre2.tar.gz
Merge commit 'syslinux-3.52' into gpxe-supportsyslinux-3.60-pre2
Diffstat (limited to 'memdump/io.h')
-rw-r--r--memdump/io.h40
1 files changed, 40 insertions, 0 deletions
diff --git a/memdump/io.h b/memdump/io.h
new file mode 100644
index 00000000..a592402f
--- /dev/null
+++ b/memdump/io.h
@@ -0,0 +1,40 @@
+#ifndef IO_H
+#define IO_H
+
+static inline void outb(unsigned char v, unsigned short p)
+{
+ asm volatile("outb %1,%0" : : "d" (p), "a" (v));
+}
+
+static inline unsigned char inb(unsigned short p)
+{
+ unsigned char v;
+ asm volatile("inb %1,%0" : "=a" (v) : "d" (p));
+ return v;
+}
+
+static inline void outw(unsigned short v, unsigned short p)
+{
+ asm volatile("outw %1,%0" : : "d" (p), "a" (v));
+}
+
+static inline unsigned short inw(unsigned short p)
+{
+ unsigned short v;
+ asm volatile("inw %1,%0" : "=a" (v) : "d" (p));
+ return v;
+}
+
+static inline void outl(unsigned int v, unsigned short p)
+{
+ asm volatile("outl %1,%0" : : "d" (p), "a" (v));
+}
+
+static inline unsigned int inl(unsigned short p)
+{
+ unsigned int v;
+ asm volatile("inl %1,%0" : "=a" (v) : "d" (p));
+ return v;
+}
+
+#endif