about summary refs log tree commit diff stats
path: root/html/baremetal/502manhattan-line.mu.html
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2021-01-13 19:38:14 -0800
committerKartik Agaram <vc@akkartik.com>2021-01-13 19:38:14 -0800
commitf36093ecd927005ee00312defab205218b30e0d0 (patch)
treefa13fa7325d265941063aa6cfc8c59dd38204792 /html/baremetal/502manhattan-line.mu.html
parentb4af05394ae60a372053f48095104e2965791569 (diff)
downloadmu-f36093ecd927005ee00312defab205218b30e0d0.tar.gz
7512 - stale .ctags
Diffstat (limited to 'html/baremetal/502manhattan-line.mu.html')
-rw-r--r--html/baremetal/502manhattan-line.mu.html14
1 files changed, 7 insertions, 7 deletions
diff --git a/html/baremetal/502manhattan-line.mu.html b/html/baremetal/502manhattan-line.mu.html
index 9d2632d1..fb41ad73 100644
--- a/html/baremetal/502manhattan-line.mu.html
+++ b/html/baremetal/502manhattan-line.mu.html
@@ -55,14 +55,14 @@ if ('onhashchange' in window) {
 <body onload='JumpToLine();'>
 <a href='https://github.com/akkartik/mu/blob/main/baremetal/502manhattan-line.mu'>https://github.com/akkartik/mu/blob/main/baremetal/502manhattan-line.mu</a>
 <pre id='vimCodeElement'>
-<span id="L1" class="LineNr"> 1 </span><span class="PreProc">fn</span> <span class="muFunction">draw-box</span> screen: (addr screen), x1: int, y1: int, x2: int, y2: int, color: int <span class="Delimiter">{</span>
-<span id="L2" class="LineNr"> 2 </span>  draw-horizontal-line screen, x1, x2, y1, color
-<span id="L3" class="LineNr"> 3 </span>  draw-vertical-line screen, x1, y1, y2, color
-<span id="L4" class="LineNr"> 4 </span>  draw-horizontal-line screen, x1, x2, y2, color
-<span id="L5" class="LineNr"> 5 </span>  draw-vertical-line screen, x2, y1, y2, color
+<span id="L1" class="LineNr"> 1 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='502manhattan-line.mu.html#L1'>draw-box</a></span> screen: (addr screen), x1: int, y1: int, x2: int, y2: int, color: int <span class="Delimiter">{</span>
+<span id="L2" class="LineNr"> 2 </span>  <a href='502manhattan-line.mu.html#L8'>draw-horizontal-line</a> screen, x1, x2, y1, color
+<span id="L3" class="LineNr"> 3 </span>  <a href='502manhattan-line.mu.html#L19'>draw-vertical-line</a> screen, x1, y1, y2, color
+<span id="L4" class="LineNr"> 4 </span>  <a href='502manhattan-line.mu.html#L8'>draw-horizontal-line</a> screen, x1, x2, y2, color
+<span id="L5" class="LineNr"> 5 </span>  <a href='502manhattan-line.mu.html#L19'>draw-vertical-line</a> screen, x2, y1, y2, color
 <span id="L6" class="LineNr"> 6 </span><span class="Delimiter">}</span>
 <span id="L7" class="LineNr"> 7 </span>
-<span id="L8" class="LineNr"> 8 </span><span class="PreProc">fn</span> <span class="muFunction">draw-horizontal-line</span> screen: (addr screen), x1: int, x2: int, y: int, color: int <span class="Delimiter">{</span>
+<span id="L8" class="LineNr"> 8 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='502manhattan-line.mu.html#L8'>draw-horizontal-line</a></span> screen: (addr screen), x1: int, x2: int, y: int, color: int <span class="Delimiter">{</span>
 <span id="L9" class="LineNr"> 9 </span>  <span class="PreProc">var</span> x/<span class="Constant">eax</span>: int <span class="SpecialChar">&lt;-</span> copy x1
 <span id="L10" class="LineNr">10 </span>  <span class="Delimiter">{</span>
 <span id="L11" class="LineNr">11 </span>    compare x, x2
@@ -73,7 +73,7 @@ if ('onhashchange' in window) {
 <span id="L16" class="LineNr">16 </span>  <span class="Delimiter">}</span>
 <span id="L17" class="LineNr">17 </span><span class="Delimiter">}</span>
 <span id="L18" class="LineNr">18 </span>
-<span id="L19" class="LineNr">19 </span><span class="PreProc">fn</span> <span class="muFunction">draw-vertical-line</span> screen: (addr screen), x: int, y1: int, y2: int, color: int <span class="Delimiter">{</span>
+<span id="L19" class="LineNr">19 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='502manhattan-line.mu.html#L19'>draw-vertical-line</a></span> screen: (addr screen), x: int, y1: int, y2: int, color: int <span class="Delimiter">{</span>
 <span id="L20" class="LineNr">20 </span>  <span class="PreProc">var</span> y/<span class="Constant">eax</span>: int <span class="SpecialChar">&lt;-</span> copy y1
 <span id="L21" class="LineNr">21 </span>  <span class="Delimiter">{</span>
 <span id="L22" class="LineNr">22 </span>    compare y, y2