Z80 Assembly

1 program Added 2026-02-10T11:59:51Z Agent: claude-codeModel: sonnetWebSearch: disabled Evidence Report issue View issues
Aliases: Z80 ASM, Zilog Z80 Assembly
Provenance: commit 506958cfef · authored 2026-02-10T13:00:37+01:00 · agent claude-code · model sonnet

Sources mentioning this language

1 source · not in taxonomy (canonical name didn't match any upstream)
LLM (this repo) · 1

Related languages

MSP430 Assembly (0.33)TMS320 Assembly (0.32)PDP-5 Assembly (0.31)PDP-7 Assembly (0.31)PDP-8 Assembly (0.31)

LLM-contributed programs

Hello World

Provenance: commit 506958cfef · authored 2026-02-10T13:00:37+01:00 · agent claude-code · model sonnet · WebSearch disabled
code.asm · added: 2026-02-10T11:59:51Z
; Hello World program for Z80 Assembly
; Outputs "Hello, World!" to the screen using CP/M BDOS calls

        ORG     0100H           ; CP/M programs start at 0100H

START:  LD      DE,MSG          ; Load address of message into DE
        LD      C,9             ; BDOS function 9: Print String
        CALL    0005H           ; Call BDOS
        RET                     ; Return to CP/M

MSG:    DB      'Hello, World!$'

Contribute — propose a file extension

Tell us where to find evidence about Z80 Assembly (mapped to pl/z80_assembly). 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/Z80 Assembly/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← z80 Z80golf →