1
0
Fork 0

correct all unintentional changes

Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@1314
This commit is contained in:
Peter Veenstra 2003-10-14 08:38:36 +00:00
parent 5e13e5c0e4
commit c36318f721
11 changed files with 14 additions and 24 deletions

View file

@ -212,7 +212,7 @@ INLINE void ResetDMA8(DMA_CHANNEL * chan) {
chan->address=(chan->page << 16)+chan->base_address;
chan->current_count=chan->base_count+1;
chan->current_address=chan->base_address;
// LOG(LOG_DMA,LOG_NORMAL)("Setup at address %X:%X count %X",chan->page<<12,chan->base_address,chan->current_count);
LOG(LOG_DMA,LOG_NORMAL)("Setup at address %X:%X count %X",chan->page<<12,chan->base_address,chan->current_count);
}
Bitu DMA_8_Read(Bitu dmachan,Bit8u * buffer,Bitu count) {

View file

@ -24,9 +24,7 @@ IO_WriteBlock IO_WriteTable[IO_MAX];
void IO_Write(Bitu num,Bit8u val) {
if (num<IO_MAX) IO_WriteTable[num].handler(num,val);
else {
LOG(LOG_IO,LOG_WARN)("IO:Out or range write %X2 to port %4X",val,num);
}
else LOG(LOG_IO,LOG_WARN)("IO:Out or range write %X2 to port %4X",val,num);
}
Bit8u IO_Read(Bitu num) {

View file

@ -16,7 +16,7 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
/* $Id: timer.cpp,v 1.18 2003-10-13 21:57:35 finsterr Exp $ */
/* $Id: timer.cpp,v 1.19 2003-10-14 08:38:36 qbix79 Exp $ */
#include "dosbox.h"
#include "inout.h"