OpenCores
URL https://opencores.org/ocsvn/or1k/or1k/trunk

Subversion Repositories or1k

Compare Revisions

  • This comparison shows the changes necessary to convert path
    /
    from Rev 1468 to Rev 1469
    Reverse comparison

Rev 1468 → Rev 1469

/trunk/or1ksim/peripheral/eth.c
683,7 → 683,6
PRINTF( "eth_read32( 0x%"PRIxADDR" ): Illegal address\n",
addr + eth->baseaddr );
runtime.sim.cont_run = 0;
return 0;
}
/* ========================================================================= */
756,7 → 755,6
PRINTF( "eth_write32( 0x%"PRIxADDR" ): Illegal address\n",
addr + eth->baseaddr );
runtime.sim.cont_run = 0;
return;
}
/* ========================================================================= */
/trunk/or1ksim/peripheral/ps2kbd.c
168,7 → 168,6
break;
default:
fprintf (stderr, "Write out of keyboard space (0x%"PRIxADDR")!\n", addr);
runtime.sim.cont_run = 0;
break;
}
}
238,7 → 237,6
return 0;
default:
fprintf (stderr, "Read out of keyboard space (0x%"PRIxADDR")!\n", addr);
runtime.sim.cont_run = 0;
return 0;
}
}
/trunk/or1ksim/peripheral/fb.c
78,7 → 78,6
a /= 4;
if (a < 0 || a >= 256) {
fprintf (stderr, "Write out of palette buffer (0x%"PRIxADDR")!\n", addr);
runtime.sim.cont_run = 0;
} else fb->pal[a] = value;
break;
}
103,7 → 102,6
a /= 4;
if (a < 0 || a >= 256) {
fprintf (stderr, "Read out of palette buffer (0x%"PRIxADDR")!\n", addr);
runtime.sim.cont_run = 0;
return 0;
} else return fb->pal[a];
}

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.