From: Brett Gordon Date: Fri, 23 Oct 2015 06:09:43 +0000 (-0400) Subject: coco3: graphics: fix little endianess X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=bc2073c86ff16a2ff60e2c41276346daddcbe610;p=FUZIX.git coco3: graphics: fix little endianess --- 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