From e892aaf0f69a1199d8c4e6b6efa3a435182ceaad Mon Sep 17 00:00:00 2001 From: Alan Cox Date: Fri, 16 Nov 2018 20:55:44 +0000 Subject: [PATCH] sam: fix vt scrolling The clear line function was busted --- Kernel/platform-sam/sam_vt.s | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Kernel/platform-sam/sam_vt.s b/Kernel/platform-sam/sam_vt.s index 045f327d..9b8ae609 100644 --- a/Kernel/platform-sam/sam_vt.s +++ b/Kernel/platform-sam/sam_vt.s @@ -174,7 +174,7 @@ _clear_lines: call base_addr call map_video ld h,d - ld e,l + ld l,e inc de dec bc ld (hl),#0 -- 2.34.1