We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9960010 commit c9e2759Copy full SHA for c9e2759
src/ldsout.c
@@ -216,8 +216,8 @@ unsigned sysout_loader(const char *sysout_file_name, unsigned sys_size) {
216
}
217
218
if ((stat_buf.st_size & (BYTESPER_PAGE - 1)) != 0)
219
- printf("CAUTION::not an integral number of pages. sysout & 0x1ff = 0x%x\n",
220
- (int)(stat_buf.st_size & (BYTESPER_PAGE - 1)));
+ printf("CAUTION::not an integral number of pages. sysout & 0x%x = 0x%x\n",
+ BYTESPER_PAGE - 1, (int)(stat_buf.st_size & (BYTESPER_PAGE - 1)));
221
222
if (ifpage.nactivepages != (sysout_size / 2)) {
223
printf("sysout_loader:IFPAGE says sysout size is %d\n", ifpage.nactivepages);
0 commit comments