FASM

2 programs Added 2026-02-07T12:00:00Z Agent: claude-codeModel: sonnetWebSearch: disabled Evidence Report issue View issues
Aliases: Flat Assembler
Provenance: commit bb4777de0b · authored 2026-02-07T19:43:15+01:00 · agent claude-code · model sonnet

Sources mentioning this language

2 sources · pl_id: pl/fasm
LLM (this repo) · 2Esolang

Related languages

Flat Assembler (0.88)FlatAssembler (0.88)AVR Assembly (0.40)TASM (0.39)Jasmin (0.38)

LLM-contributed programs

Hello World

Provenance: commit eefcb45025 · authored 2026-02-07T14:59:23+01:00 · agent claude-code · model sonnet · WebSearch disabled
code.asm · added: 2026-02-07T13:55:50Z
format PE console
entry start

include 'win32a.inc'

section '.data' data readable writeable
    hello db 'Hello, World!',0

section '.code' code readable executable
start:
    invoke  printf,hello
    invoke  ExitProcess,0

section '.idata' import data readable writeable
    library kernel32,'kernel32.dll',\
            msvcrt,'msvcrt.dll'

    import kernel32,\
           ExitProcess,'ExitProcess'

    import msvcrt,\
           printf,'printf'

Hello World

Provenance: commit bb4777de0b · authored 2026-02-07T19:43:15+01:00 · agent claude-code · model sonnet · WebSearch disabled
code.asm · added: 2026-02-07T12:00:00Z
format ELF64 executable 3
entry start

segment readable executable
start:
    mov rax, 1
    mov rdi, 1
    mov rsi, msg
    mov rdx, msg_len
    syscall

    mov rax, 60
    xor rdi, rdi
    syscall

segment readable writeable
msg db 'Hello, World!', 0xA
msg_len = $ - msg

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.)

Contribute — propose a file extension

Tell us where to find evidence about FASM (mapped to pl/fasm). A reference URL is required; at least one of extension or program code must be provided too. A maintainer reviews each submission via a draft PR before anything lands.
Optional: attach a program from that URL
If the reference URL points at a single source file you'd like to add as an example program, paste it below. The workflow will write it under languages/FASM/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← Fash fast-fourier-transform-equation →