]> xenbits.xensource.com Git - seabios.git/commitdiff
docs: Prefer triple backticks to multiple lines with single backticks
authorKevin O'Connor <kevin@koconnor.net>
Thu, 19 Feb 2015 19:47:39 +0000 (14:47 -0500)
committerKevin O'Connor <kevin@koconnor.net>
Tue, 24 Feb 2015 16:28:31 +0000 (11:28 -0500)
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
docs/Debugging.md
docs/Download.md
docs/Linking_overview.md

index 03567de4d86b342c974f6bbf2e2760e885f0b04b..4aaf472990f466c2cd31d1cb6f09829c7e60f3c8 100644 (file)
@@ -55,8 +55,10 @@ rate.
 The tool can also timestamp the messages from the QEMU debug port. To
 use with QEMU run the following:
 
-`mkfifo qemudebugpipe`\
-`qemu -chardev pipe,path=qemudebugpipe,id=seabios -device isa-debugcon,iobase=0x402,chardev=seabios ...`
+```
+mkfifo qemudebugpipe
+qemu -chardev pipe,path=qemudebugpipe,id=seabios -device isa-debugcon,iobase=0x402,chardev=seabios ...
+```
 
 and then in another session:
 
@@ -90,8 +92,10 @@ on using gdb and QEMU in this mode.
 
 When debugging 16bit code, also run the following commands in gdb:
 
-`set architecture i8086`\
-`add-symbol-file out/rom16.o 0xf0000`
+```
+set architecture i8086
+add-symbol-file out/rom16.o 0xf0000
+```
 
 The second command loads the 16bit symbols a second time at an offset
 of 0xf0000, which helps gdb set and catch breakpoints correctly.
index a49c6fb74ccbf7fb7ad1001f131a659b09922f9f..9b1492ac50050a88b4aeb35f33f273852ee21f2a 100644 (file)
@@ -9,8 +9,10 @@ The SeaBIOS project uses the [git](http://git-scm.com/) revision
 control system. To download the latest source from revision control,
 run:
 
-`$ git clone git://git.seabios.org/seabios.git seabios`\
-`$ cd seabios`
+```
+$ git clone git://git.seabios.org/seabios.git seabios
+$ cd seabios
+```
 
 There's also a [website](http://git.seabios.org/) to browse the latest
 source code online.
index fb938b632024a5af612a472b73f5f877f60bf43f..965e926d386779ac70ef1dc528ceb493f91a3a5b 100644 (file)
@@ -95,8 +95,10 @@ a corresponding symbol definitions in the linker script that points to
 the C code of the specified mode. This is typically seen with code
 like:
 
-`extern void _cfunc32flat_process_op(void);`\
-`return call32(_cfunc32flat_process_op, 0, 0);`
+```
+extern void _cfunc32flat_process_op(void);
+return call32(_cfunc32flat_process_op, 0, 0);
+```
 
 In the above example, when the build finds the symbol
 "\_cfunc32flat_process_op" it will emit that symbol with the physical