summaryrefslogtreecommitdiff
path: root/tool/p8bin2uart.c
diff options
context:
space:
mode:
authorJulian Blake Kongslie2022-05-08 17:21:52 -0700
committerJulian Blake Kongslie2022-05-08 17:21:52 -0700
commit89e044aeec01973e40409009e3aac2679e80850a (patch)
tree9bbc9697d1244c0330e79df2d72aa13ba0104e0f /tool/p8bin2uart.c
parentMake the calculation for OVERSAMPLE more explicit. (diff)
downloadmultipdp8-89e044aeec01973e40409009e3aac2679e80850a.tar.xz
Remove extraneous newline (we still have some other one somewhere)
Diffstat (limited to '')
-rw-r--r--tool/p8bin2uart.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tool/p8bin2uart.c b/tool/p8bin2uart.c
index 88c19cd..5d5a708 100644
--- a/tool/p8bin2uart.c
+++ b/tool/p8bin2uart.c
@@ -191,7 +191,7 @@ dump(unsigned int wordsperline)
191 nextaddr = a + wordsperline; 191 nextaddr = a + wordsperline;
192 } 192 }
193 if (nextaddr != 32768) 193 if (nextaddr != 32768)
194 print(" !%x\n", (unsigned int)((32768 - nextaddr) / wordsperline)); 194 print(" !%x", (unsigned int)((32768 - nextaddr) / wordsperline));
195 flush(); 195 flush();
196} 196}
197 197