The unified diff between revisions [65df00aa..] and [24d5b9f4..] is displayed below. It can also be downloaded as a raw diff.

This diff has been restricted to the following files: 'uart.c'

#
# old_revision [65df00aa2705ce33fd74f4dd706d2879fe99b2b0]
# new_revision [24d5b9f4dff9135787b198fe1127d9c1e3326b9c]
#
# patch "uart.c"
#  from [7c57b3658cbce3a90ff7773d9e4a0b1d626c68af]
#    to [7a38c486dc1280695e1e62c6d3a76d6c9f849f67]
#
============================================================
--- uart.c	7c57b3658cbce3a90ff7773d9e4a0b1d626c68af
+++ uart.c	7a38c486dc1280695e1e62c6d3a76d6c9f849f67
@@ -38,6 +38,8 @@ void __attribute__((interrupt("IRQ"))) u
 
 void __attribute__((interrupt("IRQ"))) uart_interrupt_handler(void);
 
+#ifdef USE_UART
+
 void init_uart(void)
 {
 	UREG(FDR) = 0x10; /* DivAddVal = 0, MulVal = 1 */
@@ -155,6 +157,31 @@ void putint(unsigned int n) {
 	putstr(s+i);
 }
 
+void putint_s(int n) {
+	char s[12];
+	int i;
+	int neg;
+
+	/* OK, technically, this might not work properly for the most
+	 * negative possible number. Oh well.
+	 */
+	neg = (n < 0);
+	if (neg)
+		n = -n;
+
+	i = 11;
+	s[i] = '\0';
+
+	do {
+		s[--i] = n % 10 + '0';
+	} while ((n /= 10) > 0);
+
+	if (neg)
+		s[--i] = '-';
+
+	putstr(s+i);
+}
+
 void puthex(unsigned int n) {
 	char s[9];
 	int i;
@@ -180,3 +207,4 @@ bool getch(char *c) {
 	uart_rxread = (uart_rxread + 1) % UART_RXBUFSIZE;
 	return TRUE;
 }
+#endif