100% FREE

Asm Codeblock Highlight

Add this to the head of your HTML Page, or add Shiki.

<script src="https://esm.sh/[email protected]" defer async></script>

Edit the codeblock.

section .data
    msg db 'Hello, Assembly!',0
section .text
    global _start
_start:
    mov eax, 4
    mov ebx, 1
    mov ecx, msg
    mov edx, 15
    int 0x80
    mov eax, 1
    int 0x80

Copy paste this.

Other Free Tools