mirror of
https://github.com/cc65/cc65.git
synced 2025-01-02 09:34:22 +00:00
Use CR instead of LF, because this works better over the serial port of a real C1P.
This commit is contained in:
parent
16bdb10bfe
commit
a66c93c55b
@ -100,7 +100,7 @@ static void Transform (unsigned long StartAddress, FILE *In, FILE *Out,
|
||||
|
||||
/* Loop over all input bytes and enter them one by one */
|
||||
for (c = getc(In); c != EOF; c = getc(In)) {
|
||||
fprintf(Out, "%02.2X\n", (unsigned int) c & 0xFF);
|
||||
fprintf(Out, "%02.2X\r", (unsigned int) c & 0xFF);
|
||||
}
|
||||
|
||||
if (AutoStart) {
|
||||
@ -111,7 +111,7 @@ static void Transform (unsigned long StartAddress, FILE *In, FILE *Out,
|
||||
}
|
||||
else {
|
||||
/* Store 00 to 0x00FB to enable keyboard input at the end */
|
||||
fprintf(Out, "%c%04.4X%c%02.2X\n", ADDRESS_MODE_CMD,
|
||||
fprintf(Out, "%c%04.4X%c%02.2X", ADDRESS_MODE_CMD,
|
||||
0x00FB, DATA_MODE_CMD, 0x00);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user