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.11 by cebix, 2001-07-03T19:20:38Z vs.
Revision 1.12 by cebix, 2001-07-11T19:26:13Z

# Line 450 | Line 450 | void ChecksumSlotROM(void)
450          p[slot_rom_size - 10] = 0;
451          p[slot_rom_size - 9] = 0;
452          uint32 crc = 0;
453 <        for (uint32 i=0; i<slot_rom_size; i++) {
453 >        for (int i=0; i<slot_rom_size; i++) {
454                  crc = (crc << 1) | (crc >> 31);
455                  crc += p[i];
456          }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines