Skip to content

Commit

Permalink
fixed warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
tyler-marr committed Feb 11, 2019
1 parent 391dc7c commit 73be0c7
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion instructions.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,6 @@ void disassemble_view(unsigned int insn_address, unsigned int instruction, char
unsigned int immediate = instruction & 0xffff;
// int signed_immediate = ((immediate & 0x8000) ? (0xffff0000 | immediate) : immediate);
unsigned int address = instruction & 0xfffff;
int signed_address = ((address & 0x80000) ? (0xfff00000 | address) : address);

int insn_num = 0;

Expand Down

0 comments on commit 73be0c7

Please sign in to comment.