fix apps/ex7.mu

I'm increasingly missing CI.
This commit is contained in:
Kartik K. Agaram 2021-09-04 13:57:20 -07:00
parent 66d5a8735c
commit cfdee0a6fa
2 changed files with 8 additions and 2 deletions

View File

@ -81,6 +81,13 @@ fn move-cursor-to-left-margin-of-next-line screen: (addr screen) {
set-cursor-position screen, cursor-x, cursor-y
}
fn draw-code-point-at-cursor screen: (addr screen), c: code-point, color: int, background-color: int {
var cursor-x/eax: int <- copy 0
var cursor-y/ecx: int <- copy 0
cursor-x, cursor-y <- cursor-position screen
var dummy/eax: int <- draw-code-point screen, c, cursor-x, cursor-y, color, background-color
}
fn draw-code-point-at-cursor-over-full-screen screen: (addr screen), c: code-point, color: int, background-color: int {
var cursor-x/eax: int <- copy 0
var cursor-y/ecx: int <- copy 0

View File

@ -9,10 +9,9 @@
# k, l.
fn main screen: (addr screen), keyboard: (addr keyboard), data-disk: (addr disk) {
var space/eax: grapheme <- copy 0x20
set-cursor-position screen, 0, 0
{
draw-cursor screen, space
draw-cursor screen, 0x20/space
var key/eax: byte <- read-key keyboard
{
compare key, 0x68/h