Test Post
This Post will test all of the function of markdown editor.
Created on September 4, 2023.
Table of Contents
H1
H2
H3
H4
- unordered
- List
-
Ordered
-
List
This is a blockquote
This is inlinecode
and this is a link to google
Moving on this is bold and this is italic
;run on Linux with: nasm -felf64 decrement.asm && ld decrement.o && ./a.out
global _start
section .text
_start:
mov rax, 0xDEADBEEF
call decrement
call exit
decrement:
dec rax
cmp rax, 0
jg decrement
ret
exit:
mov rax, 60
syscall
``