| 16 | DOS_Device *Devices[10]; |
| 17 | |
| 18 | bool __attribute__((noinline)) DOS_Device::Read(unsigned char * data,unsigned short * size) { |
| 19 | printf("DOS_Device::Read (this = %ld)\n", (long)this); |
| 20 | return Devices[devnum]->Read(data,size); |
| 21 | } |
| 22 | |
| 23 | class device_CON : public DOS_Device { |
| 24 | public: |