Browse Source

more fixups.

WestfW 10 years ago
parent
commit
82285c243f
2 changed files with 6 additions and 6 deletions
  1. 5 5
      Home.md
  2. 1 1
      HowOptibootWorks.md

+ 5 - 5
Home.md

@@ -1,9 +1,9 @@
 Welcome to the optiboot wiki!<br>
 ##Wiki pages:##
 
-* Installing
-* CompilingOptiboot
-* HowOptibootWorks
+* [[Installing]]
+* [[CompilingOptiboot]]
+* [[HowOptibootWorks]]
 
-* AddingOptibootChipsToIde
-* GoodQuestions - Frequently asked technical questions
+* [[AddingOptibootChipsToIde]]
+* [[GoodQuestions]] - Frequently asked technical questions

+ 1 - 1
HowOptibootWorks.md

@@ -38,7 +38,7 @@ All other commands will result in a success response if they are immediate follo
 ## Space Saving Techniques ##
 In order to save space, Optiboot utilizes a couple of techniques that may be of general interest:
 
-  * The Vector table are normal startup code are omitted by using linker options "-nostdlib -nostartfiles"
+  * The Vector table and normal startup code are omitted by using linker options "-nostdlib -nostartfiles"
   * This requires that main() be declared with attribute OS\_main and manually placed in the .init9 section.
   * and thus main() has to initialize the known-zero register (r1) and SP on chips that don't automatically set SP to end-of-ram.
   * inlining of functions is carefully controlled.