revision 813:262efed79218
summary |
tree |
shortlog |
changelog |
graph |
changeset |
raw | bz2 | zip | gz changeset | 813:262efed79218 |
parent | 812:8cc61d5ea1f8 |
child | 814:f1a21df54e19 |
author | nkeynes |
date | Mon Aug 18 12:16:55 2008 +0000 (14 years ago) |
Display opcode as 32-bit word rather than 4 bytes... easier to match up with the manual this way
1.1 --- a/src/aica/armdasm.c Wed Aug 13 10:32:00 2008 +00001.2 +++ b/src/aica/armdasm.c Mon Aug 18 12:16:55 2008 +00001.3 @@ -217,8 +217,7 @@1.4 uint32_t ir = arm_read_long(pc);1.5 int i,j;1.7 - sprintf( opcode, "%02X %02X %02X %02X", ir&0xFF, (ir>>8) & 0xFF,1.8 - (ir>>16)&0xFF, (ir>>24) );1.9 + sprintf( opcode, "%08X", ir );1.11 if( COND(ir) == 0x0F ) {1.12 UNIMP(ir);
.