OSDN Git Service

replace TABs with spaces
[qmiga/qemu.git] / hw / char / parallel.c
index 1c9ca47..af551e7 100644 (file)
 /*
  * These are the definitions for the Printer Status Register
  */
-#define PARA_STS_BUSY  0x80    /* Busy complement */
-#define PARA_STS_ACK   0x40    /* Acknowledge */
-#define PARA_STS_PAPER 0x20    /* Out of paper */
-#define PARA_STS_ONLINE        0x10    /* Online */
-#define PARA_STS_ERROR 0x08    /* Error complement */
-#define PARA_STS_TMOUT 0x01    /* EPP timeout */
+#define PARA_STS_BUSY   0x80    /* Busy complement */
+#define PARA_STS_ACK    0x40    /* Acknowledge */
+#define PARA_STS_PAPER  0x20    /* Out of paper */
+#define PARA_STS_ONLINE 0x10    /* Online */
+#define PARA_STS_ERROR  0x08    /* Error complement */
+#define PARA_STS_TMOUT  0x01    /* EPP timeout */
 
 /*
  * These are the definitions for the Printer Control Register
  */
-#define PARA_CTR_DIR   0x20    /* Direction (1=read, 0=write) */
-#define PARA_CTR_INTEN 0x10    /* IRQ Enable */
-#define PARA_CTR_SELECT        0x08    /* Select In complement */
-#define PARA_CTR_INIT  0x04    /* Initialize Printer complement */
-#define PARA_CTR_AUTOLF        0x02    /* Auto linefeed complement */
-#define PARA_CTR_STROBE        0x01    /* Strobe complement */
+#define PARA_CTR_DIR    0x20    /* Direction (1=read, 0=write) */
+#define PARA_CTR_INTEN  0x10    /* IRQ Enable */
+#define PARA_CTR_SELECT 0x08    /* Select In complement */
+#define PARA_CTR_INIT   0x04    /* Initialize Printer complement */
+#define PARA_CTR_AUTOLF 0x02    /* Auto linefeed complement */
+#define PARA_CTR_STROBE 0x01    /* Strobe complement */
 
 #define PARA_CTR_SIGNAL (PARA_CTR_SELECT|PARA_CTR_INIT|PARA_CTR_AUTOLF|PARA_CTR_STROBE)