Assembly Language
1 program
Added 2025-10-22T10:05:57Z
Model: openai/gpt-4o-miniTemp: 0.4
Evidence
Report issue
View issues
Aliases: asm, assembly
Provenance: commit c4d1575ce7 · authored 2025-10-22T12:05:57+02:00 · model openai/gpt-4o-mini
Sources mentioning this language
3 sources · pl_id:
pl/assembly-languageRelated languages
LLM-contributed programs
Hello World in Assembly
Provenance: commit c4d1575ce7 · authored 2025-10-22T12:05:57+02:00 · model openai/gpt-4o-mini · Temp 0.4
section .data
hello db 'Hello, World!',0
section .text
global _start
_start:
; write our string to stdout
mov rax, 1 ; syscall: write
mov rdi, 1 ; file descriptor: stdout
mov rsi, hello ; pointer to string
mov rdx, 13 ; length of string
syscall
; exit
mov rax, 60 ; syscall: exit
xor rdi, rdi ; exit code 0
syscall
Real programs from Software Heritage
No SWH evidence indexed yet for this language. (Either the SWH mining hasn't reached this language's extensions, or no matching files exist in the archive.)