URL
https://opencores.org/ocsvn/zipcpu/zipcpu/trunk
Subversion Repositories zipcpu
Compare Revisions
- This comparison shows the changes necessary to convert path
/zipcpu
- from Rev 52 to Rev 51
- ↔ Reverse comparison
Rev 52 → Rev 51
/trunk/sw/zasm/zdump.cpp
35,7 → 35,6
//////////////////////////////////////////////////////////////////////////////// |
#include <stdio.h> |
#include <unistd.h> |
#include <ctype.h> |
|
#include "zopcodes.h" |
|
55,13 → 54,7
for(int i=0; i<nr; i++) { |
zipi_to_string(ibuf[i], ln); |
// printf("%s\n", ln); |
printf("%08x: (0x%08x %c%c%c%c) %s\n", addr++, |
ibuf[i], |
isgraph((ibuf[i]>>24)&0x0ff)?((ibuf[i]>>24)&0x0ff) : '.', |
isgraph((ibuf[i]>>16)&0x0ff)?((ibuf[i]>>16)&0x0ff) : '.', |
isgraph((ibuf[i]>> 8)&0x0ff)?((ibuf[i]>> 8)&0x0ff) : '.', |
isgraph((ibuf[i] )&0x0ff)?((ibuf[i] )&0x0ff) : '.', |
ln); |
printf("%08x: (0x%08x) %s\n", addr++, ibuf[i], ln); |
} |
} fclose(fp); |
} |