From bcee3fe083a5cd3f02b9095b13ba05bd3269c16b Mon Sep 17 00:00:00 2001 From: "warren.toomey" Date: Tue, 6 May 2008 23:55:17 +0000 Subject: [PATCH] Yes! I finally fixed the CR annoyance! --- patches/upcase.patch | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/patches/upcase.patch b/patches/upcase.patch index 0b43485..38bcad8 100644 --- a/patches/upcase.patch +++ b/patches/upcase.patch @@ -1,10 +1,15 @@ ---- rebuilt/u4.s Mon May 5 20:58:29 2008 -+++ build/u4.s Mon May 5 20:58:14 2008 -@@ -73,17 +73,19 @@ +--- rebuilt/u4.s Wed May 7 01:50:25 2008 ++++ build/u4.s Wed May 7 09:50:17 2008 +@@ -73,17 +73,24 @@ inc *$tks / set the reader enable bit bic $!177,r1 / clear upper 9 bits of the character (strip off / 8th bit of char) - cmp r1,$'a-40 / is character upper case A,..., upper case Z. ++ / cr to lf conversion May 7 2008 ++ cmp r1,$15 / if we receive a cr ++ bne 0f ++ mov $12,r1 / convert it into an lf ++0: + / uppercase to lowercase conversion removed May 5 2008 + / cmp r1,$'a-40 / is character upper case A,..., upper case Z. / note that