; I will modify this content after I create and publish my own programming language
section .data
message db "There is nothing for you to see here yet and I will put something on later", 0
message_length equ $ - message
section .text
global _start
_start:
mov rax, 1
mov rdi, 1
mov rsi, message
mov rdx, message_length
syscall
mov rax, 60
mov rdi, 0
syscall
The Programmer from HELL ☣
Highlights
- Pro
Pinned Loading
-
NASM-Assembly-Collection
NASM-Assembly-Collection Public archiveNASM 64bit Short Note and sample files
-
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.