From bc2073c86ff16a2ff60e2c41276346daddcbe610 Mon Sep 17 00:00:00 2001 From: Brett Gordon Date: Fri, 23 Oct 2015 02:09:43 -0400 Subject: [PATCH] coco3: graphics: fix little endianess --- Kernel/platform-coco3/videoll.s | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Kernel/platform-coco3/videoll.s b/Kernel/platform-coco3/videoll.s index 3bc021bd..885ce87d 100644 --- a/Kernel/platform-coco3/videoll.s +++ b/Kernel/platform-coco3/videoll.s @@ -63,7 +63,7 @@ _video_write: tfr x,y ; So we can use y to get at the w/h leax 4,x ; Move on to data space vwnext: - lda 2,y + lda 3,y pshs u vwline: ldb ,x+ @@ -72,7 +72,7 @@ vwline: bne vwline puls u leau 32,u - dec ,y + dec 1,y bne vwnext puls u,pc -- 2.34.1