about summary refs log tree commit diff
diff options
context:
space:
mode:
authorEmile <git@emile.space>2024-08-17 00:00:15 +0200
committerEmile <git@emile.space>2024-08-17 00:00:15 +0200
commit8fac7604bae6e99dac6a8e7f318a28d690ff3fb0 (patch)
tree4d2ff42d72f87280866741c3fbf8e761e4b7eb06
parente141ab4a9e0af5ef8a0c6b5f8e758dfd2b989b7f (diff)
fixed a minor visual error
-rw-r--r--templates/index.html32
1 files changed, 16 insertions, 16 deletions
diff --git a/templates/index.html b/templates/index.html
index 87b59df..fd4a26a 100644
--- a/templates/index.html
+++ b/templates/index.html
@@ -26,23 +26,23 @@
 
   <div class="code">
   <pre class="codeline">; r2 malloc://1024                            # allocate 1KB of memory</pre>
-  <pre class="codeline">[;0x00000000]> e asm.arch = x86               # define the arch to use</pre>
-  <pre class="codeline">[;0x00000000]> e asm.bits = 32                # define the bits to use</pre>
-  <pre class="codeline">[;0x00000000]> aei                            # init vm</pre>
-  <pre class="codeline">[;0x00000000]> aeim                           # init staack</pre>
-  <pre class="codeline">[;0x00000000]> waf bot.asm                    # write bot to memory</pre>
-  <pre class="codeline">[;0x00000000]> aer PC = 0x100                 # set program counter</pre>
-  <pre class="codeline">[;0x00000000]> aer SP = SP + 0x100            # set stack pointer</pre>
-  <pre class="codeline">[;0x00000000]> e cmd.esil.todo=f theend=1     # define end condition</pre>
-  <pre class="codeline">[;0x00000000]> e cmd.esil.trap=f theend=1     # define end condition</pre>
-  <pre class="codeline">[;0x00000000]> e cmd.esil.intr=f theend=1     # define end condition</pre>
-  <pre class="codeline">[;0x00000000]> e cmd.esil.ioer=f theend=1     # define end condition</pre>
-  <pre class="codeline">[;0x00000000]> f theend=0                     # set the end flag to 0</pre>
-  <pre class="codeline">[;0x00000000]> aes                            # step</pre>
-  <pre class="codeline">[;0x00000000]> ?v 1+theend                    # check if the end cond. is met</pre>
+  <pre class="codeline">[0x00000000]> e asm.arch = x86               # define the arch to use</pre>
+  <pre class="codeline">[0x00000000]> e asm.bits = 32                # define the bits to use</pre>
+  <pre class="codeline">[0x00000000]> aei                            # init vm</pre>
+  <pre class="codeline">[0x00000000]> aeim                           # init staack</pre>
+  <pre class="codeline">[0x00000000]> waf bot.asm                    # write bot to memory</pre>
+  <pre class="codeline">[0x00000000]> aer PC = 0x100                 # set program counter</pre>
+  <pre class="codeline">[0x00000000]> aer SP = SP + 0x100            # set stack pointer</pre>
+  <pre class="codeline">[0x00000000]> e cmd.esil.todo=f theend=1     # define end condition</pre>
+  <pre class="codeline">[0x00000000]> e cmd.esil.trap=f theend=1     # define end condition</pre>
+  <pre class="codeline">[0x00000000]> e cmd.esil.intr=f theend=1     # define end condition</pre>
+  <pre class="codeline">[0x00000000]> e cmd.esil.ioer=f theend=1     # define end condition</pre>
+  <pre class="codeline">[0x00000000]> f theend=0                     # set the end flag to 0</pre>
+  <pre class="codeline">[0x00000000]> aes                            # step</pre>
+  <pre class="codeline">[0x00000000]> ?v 1+theend                    # check if the end cond. is met</pre>
   <pre class="codeline">..                                            # in a loop</pre>
-  <pre class="codeline">[;0x00000000]> aes                            # step</pre>
-  <pre class="codeline">[;0x00000000]> ?v 1+theend                    # check if the end cond. is met</pre>
+  <pre class="codeline">[0x00000000]> aes                            # step</pre>
+  <pre class="codeline">[0x00000000]> ?v 1+theend                    # check if the end cond. is met</pre>
   </div>
 
   <br>