about summary refs log tree commit diff stats
path: root/html/linux/407right-justify.mu.html
diff options
context:
space:
mode:
Diffstat (limited to 'html/linux/407right-justify.mu.html')
-rw-r--r--html/linux/407right-justify.mu.html11
1 files changed, 5 insertions, 6 deletions
diff --git a/html/linux/407right-justify.mu.html b/html/linux/407right-justify.mu.html
index 56977b13..9406eb62 100644
--- a/html/linux/407right-justify.mu.html
+++ b/html/linux/407right-justify.mu.html
@@ -14,15 +14,14 @@ pre { white-space: pre-wrap; font-family: monospace; color: #000000; background-
 body { font-size:12pt; font-family: monospace; color: #000000; background-color: #ffffd7; }
 a { color:inherit; }
 * { font-size:12pt; font-size: 1em; }
-.muComment { color: #005faf; }
+.PreProc { color: #c000c0; }
+.Special { color: #ff6060; }
 .LineNr { }
 .Constant { color: #008787; }
-.Special { color: #ff6060; }
-.muRegEax { color: #875f00; }
+.muRegEcx { color: #870000; }
 .Delimiter { color: #c000c0; }
 .muFunction { color: #af5f00; text-decoration: underline; }
-.muRegEcx { color: #af875f; }
-.PreProc { color: #c000c0; }
+.muComment { color: #005faf; }
 -->
 </style>
 
@@ -61,7 +60,7 @@ if ('onhashchange' in window) {
 <span id="L1" class="LineNr"> 1 </span><span class="muComment"># print 'n' with enough leading spaces to be right-justified in 'width'</span>
 <span id="L2" class="LineNr"> 2 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='407right-justify.mu.html#L2'>print-int32-decimal-right-justified</a></span> <a href='405screen.mu.html#L9'>screen</a>: (addr <a href='405screen.mu.html#L9'>screen</a>), n: int, _width: int <span class="Delimiter">{</span>
 <span id="L3" class="LineNr"> 3 </span>  <span class="muComment"># tweak things for negative numbers</span>
-<span id="L4" class="LineNr"> 4 </span>  <span class="PreProc">var</span> n-width/<span class="muRegEax">eax</span>: int <span class="Special">&lt;-</span> <a href='311decimal-int.subx.html#L312'>decimal-size</a> n
+<span id="L4" class="LineNr"> 4 </span>  <span class="PreProc">var</span> n-width/eax: int <span class="Special">&lt;-</span> <a href='311decimal-int.subx.html#L312'>decimal-size</a> n
 <span id="L5" class="LineNr"> 5 </span>  <span class="PreProc">var</span> width/<span class="muRegEcx">ecx</span>: int <span class="Special">&lt;-</span> copy _width
 <span id="L6" class="LineNr"> 6 </span>  <span class="Delimiter">{</span>
 <span id="L7" class="LineNr"> 7 </span>    compare n-width, width
committer James Booth <boothj5@gmail.com> 2016-01-22 01:24:02 +0000 Added boothj5_slack theme' href='/danisanti/profani-tty/commit/themes/boothj5_slack?id=3666eb4fd7709d927de0dbdfc827c39d4ba39ca1'>3666eb4f ^
f0837abf ^
3666eb4f ^
f0837abf ^
3666eb4f ^


f0837abf ^
3666eb4f ^



f0837abf ^
3666eb4f ^
f0837abf ^
3666eb4f ^
f0837abf ^
3666eb4f ^



f0837abf ^
3666eb4f ^

abc2f0de ^
3666eb4f ^

f0837abf ^
3666eb4f ^
f0837abf ^




3666eb4f ^






f0837abf ^
72c1c496 ^
bab75cae ^
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135