From 6e36ce06dd035408d43a6599b75b933a0709cc78 Mon Sep 17 00:00:00 2001 From: Kartik Agaram Date: Fri, 15 Jan 2021 20:30:07 -0800 Subject: 7521 - new plan for tests It's not really manageable to make the fake screen pixel-oriented. Feels excessive to compare things pixel by pixel when we will mostly be writing text to screen. It'll also make expected screen assertions more difficult to manage. So I'm not sure how to make assertions about pixels for now. Instead we'll introduce fake screens at draw-grapheme. --- baremetal/400.mu | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'baremetal/400.mu') diff --git a/baremetal/400.mu b/baremetal/400.mu index ff84a643..5025a51c 100644 --- a/baremetal/400.mu +++ b/baremetal/400.mu @@ -1,8 +1,8 @@ # screen -sig pixel screen: (addr screen), x: int, y: int, color: int -sig draw-grapheme screen: (addr screen), g: grapheme, x: int, y: int, color: int -sig cursor-position screen: (addr screen) -> _/eax: int, _/ecx: int -sig set-cursor-position screen: (addr screen), x: int, y: int +sig pixel-on-real-screen x: int, y: int, color: int +sig draw-grapheme-on-real-screen g: grapheme, x: int, y: int, color: int +sig cursor-position-on-real-screen -> _/eax: int, _/ecx: int +sig set-cursor-position-on-real-screen x: int, y: int # keyboard sig read-key kbd: (addr keyboard) -> _/eax: byte -- cgit 1.4.1-2-gfad0