Skip to content

Commit

Permalink
Removed truncation from PSEUDO_PRINT
Browse files Browse the repository at this point in the history
For more information check #82

Closes #82
  • Loading branch information
Fubukimaru committed Jan 18, 2021
1 parent 35b109b commit 5991fbe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dura.y
Original file line number Diff line number Diff line change
Expand Up @@ -677,7 +677,7 @@ pseudo_instruction: PSEUDO_ORG value
if (fmsg == NULL)
create_txt();
if (fmsg)
fprintf(fmsg, "%d\n", (short int)$2 & 0xffff);
fprintf(fmsg, "%d\n", $2);
}
}
}
Expand Down

0 comments on commit 5991fbe

Please sign in to comment.