ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/cebix/BasiliskII/src/slot_rom.cpp
(Generate patch)

Comparing BasiliskII/src/slot_rom.cpp (file contents):
Revision 1.1.1.1 by cebix, 1999-10-03T14:16:25Z vs.
Revision 1.3 by cebix, 2000-07-14T21:29:10Z

# Line 1 | Line 1
1   /*
2   *  slot_rom.cpp - Slot declaration ROM
3   *
4 < *  Basilisk II (C) 1996-1997 Christian Bauer
4 > *  Basilisk II (C) 1996-2000 Christian Bauer
5   *
6   *  This program is free software; you can redistribute it and/or modify
7   *  it under the terms of the GNU General Public License as published by
# Line 392 | Line 392 | bool InstallSlotROM(void)
392  
393          // Calculate CRC
394          uint32 crc = 0;
395 <        for (int i=0; i<p; i++) {
395 >        for (uint32 i=0; i<p; i++) {
396                  crc = (crc << 1) | (crc >> 31);
397                  crc += srom[i];
398          }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines