about summary refs log tree commit diff stats
path: root/html
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2018-12-30 12:58:21 -0800
committerKartik Agaram <vc@akkartik.com>2018-12-30 12:58:21 -0800
commit0474ec865af12cff08dd255954fbccf6d38085e6 (patch)
tree738a543c5bf061c08f454753081e8bc9f451a982 /html
parent5a68894ca16f1a67112695990446c1b29da4f5c0 (diff)
downloadmu-0474ec865af12cff08dd255954fbccf6d38085e6.tar.gz
4898
Diffstat (limited to 'html')
-rw-r--r--html/subx/010---vm.cc.html2
-rw-r--r--html/subx/012elf.cc.html2
2 files changed, 2 insertions, 2 deletions
diff --git a/html/subx/010---vm.cc.html b/html/subx/010---vm.cc.html
index 1d5ce504..0be40175 100644
--- a/html/subx/010---vm.cc.html
+++ b/html/subx/010---vm.cc.html
@@ -173,7 +173,7 @@ if ('onhashchange' in window) {
 <span id="L112" class="LineNr">112 </span><span class="SalientComment">//:: simulated RAM</span>
 <span id="L113" class="LineNr">113 </span>
 <span id="L114" class="LineNr">114 </span><span class="Delimiter">:(before &quot;End Types&quot;)</span>
-<span id="L115" class="LineNr">115 </span><span class="Normal">const</span> <span class="Normal">uint32_t</span> <a href='010---vm.cc.html#L115'>SEGMENT_ALIGNMENT</a> = <span class="Constant">0x1000000</span><span class="Delimiter">;</span>
+<span id="L115" class="LineNr">115 </span><span class="Normal">const</span> <span class="Normal">uint32_t</span> <a href='010---vm.cc.html#L115'>SEGMENT_ALIGNMENT</a> = <span class="Constant">0x1000000</span><span class="Delimiter">;</span>  <span class="Comment">// 16MB</span>
 <span id="L116" class="LineNr">116 </span><span class="Normal">inline</span> <span class="Normal">uint32_t</span> <a href='010---vm.cc.html#L116'>align_upwards</a><span class="Delimiter">(</span><span class="Normal">uint32_t</span> x<span class="Delimiter">,</span> <span class="Normal">uint32_t</span> align<span class="Delimiter">)</span> <span class="Delimiter">{</span>
 <span id="L117" class="LineNr">117 </span>  <span class="Identifier">return</span> <span class="Delimiter">(</span>x+align-<span class="Constant">1</span><span class="Delimiter">)</span> &amp; -<span class="Delimiter">(</span>align<span class="Delimiter">);</span>
 <span id="L118" class="LineNr">118 </span><span class="Delimiter">}</span>
diff --git a/html/subx/012elf.cc.html b/html/subx/012elf.cc.html
index e38c23ba..7bc7680f 100644
--- a/html/subx/012elf.cc.html
+++ b/html/subx/012elf.cc.html
@@ -187,7 +187,7 @@ if ('onhashchange' in window) {
 <span id="L128" class="LineNr">128 </span><span class="Delimiter">}</span>
 <span id="L129" class="LineNr">129 </span>
 <span id="L130" class="LineNr">130 </span><span class="Delimiter">:(before &quot;End Includes&quot;)</span>
-<span id="L131" class="LineNr">131 </span><span class="Comment">// Very primitive/fixed/insecure ELF segments for now.</span>
+<span id="L131" class="LineNr">131 </span><span class="Comment">// Very primitive/fixed/insecure ELF segments for now: just consecutive VMAs.</span>
 <span id="L132" class="LineNr">132 </span><span class="Comment">//   code: 0x09000000 -&gt; 0x09ffffff</span>
 <span id="L133" class="LineNr">133 </span><span class="Comment">//   data/heap: 0x0a000000 -&gt; 0x0affffff</span>
 <span id="L134" class="LineNr">134 </span><span class="Comment">//   stack: 0x0b000ffc -&gt; 0x0b000000 (downward)</span>