From e996502f013f7b7060156b54feae5d9850aaf048 Mon Sep 17 00:00:00 2001 From: Kartik Agaram Date: Sat, 14 Nov 2020 20:27:43 -0800 Subject: 7237 Minor tweaks to get Mu shell running nicely on a Linux console atop Qemu. We also need to switch a few 256-color codes to 8-color mode. I'm not sure whether/how to patch the repo for those. --- apps/tile/value.mu | 2 -- 1 file changed, 2 deletions(-) (limited to 'apps/tile') diff --git a/apps/tile/value.mu b/apps/tile/value.mu index cd3e1594..b866d5c5 100644 --- a/apps/tile/value.mu +++ b/apps/tile/value.mu @@ -127,7 +127,6 @@ fn render-array-at screen: (addr screen), row: int, col: int, _a: (addr array va fn render-screen screen: (addr screen), row: int, col: int, _target-screen: (addr screen) { reset-formatting screen - start-color screen, 0xf2, 7 move-cursor screen, row, col var target-screen/esi: (addr screen) <- copy _target-screen var ncols-a/ecx: (addr int) <- get target-screen, num-cols @@ -154,7 +153,6 @@ fn render-screen screen: (addr screen), row: int, col: int, _target-screen: (add } increment row # mutate arg move-cursor screen, row, col - start-color screen, 0xf2, 7 print-lower-border screen, *ncols-a } -- cgit 1.4.1-2-gfad0 ut/'>about summary refs log tree commit diff stats
path: root/tests/unittests/test_callbacks.c
blob: a9b1138b28120b68872f3652c864201bf4ea4612 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66