OSDN Git Service

removed wrong tag
[unagi/old-svn-converted.git] / client / tag / 0.6.2 / paralellport.h
diff --git a/client/tag/0.6.2/paralellport.h b/client/tag/0.6.2/paralellport.h
deleted file mode 100644 (file)
index d454256..0000000
+++ /dev/null
@@ -1,30 +0,0 @@
-/*
-famicom ROM cartridge utility - unagi
-¥Ñ¥é¥ì¥ë¥Ý¡¼¥È¶¦Í­ÄêµÁ
-*/
-#ifndef _PARALELL_PORT_INLINE_H_
-#define _PARALELL_PORT_INLINE_H_
-#include "giveio.h"
-#include <windows.h>
-#define ASM_ENABLE (0)
-enum{
-       PORT_DATA = 0x0378,
-       PORT_BUSY,
-       PORT_CONTROL
-};
-
-int _inp(int);
-#if ASM_ENABLE==0
-void _outp(int, int);
-#else
-static inline void _outp(int address, int data){
-       asm(
-               " movl %0,%%edx\n"
-               " movl %1,%%eax\n"
-               " out %%al,%%dx\n"
-               :: "q"(address), "q"(data): "%edx", "%eax"
-       );
-}
-#endif
-
-#endif