mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-27 02:31:09 +00:00
Correctly write out binary data as chars, before they're cast to ints.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6385 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
8996f44f7a
commit
eae77de869
@ -129,6 +129,7 @@ namespace {
|
||||
|
||||
void emitByte(unsigned char B) {
|
||||
if (MCE) MCE->emitByte(B);
|
||||
actual << B; actual.flush();
|
||||
|
||||
values[counter] = (unsigned int) B;
|
||||
if (++counter % 4 == 0 && counter != 0) {
|
||||
@ -136,9 +137,7 @@ namespace {
|
||||
for (unsigned i=0; i<4; ++i) {
|
||||
if (values[i] < 16) o << "0";
|
||||
o << values[i] << " ";
|
||||
actual << values[i];
|
||||
}
|
||||
actual.flush();
|
||||
|
||||
o << std::dec << "\t";
|
||||
for (unsigned i=0; i<4; ++i) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user