#include "pcio.h"#include "rcs.hh"Include dependency graph for pcioSim.cc:

Go to the source code of this file.
Functions | |
| char | inputb () |
| void | outputb () |
| short | inputw () |
| void | outputw () |
| long | inputl () |
| void | outputl () |
| char | inputb (short port) |
| void | outputb (short port, char data) |
| short | inputw (short port) |
| void | outputw (short port, short data) |
| long | inputl (short port) |
| void | outputl (short port, long data) |
Variables | |
| int | first_warning = 1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Definition at line 41 of file pcioSim.cc. 00041 {
00042 rcs_print("Using simulated pcio\n");
00043 first_warning = 0;
00044 }
00045 }
00046
00047 long inputl( short port )
00048 {
00049 if(first_warning)
|
|
||||||||||||
|
Definition at line 50 of file pcioSim.cc. 00050 {
00051 rcs_print("Using simulated pcio\n");
00052 first_warning = 0;
00053 }
00054 return 0;
00055 }
00056 void outputl( short port, long data )
00057 {
|
|
|
Definition at line 59 of file pcioSim.cc. 00059 {
00060 rcs_print("Using simulated pcio\n");
00061 first_warning = 0;
00062 }
00063 }
|
|
||||||||||||
|
Definition at line 68 of file pcioSim.cc. |
|
|
Definition at line 77 of file pcioSim.cc. |
|
||||||||||||
|
Definition at line 86 of file pcioSim.cc. |
|
|
Definition at line 39 of file pcioSim.cc. |
1.2.11.1 written by Dimitri van Heesch,
© 1997-2001