Motorola 68000 Assembly

1 program Added 2026-03-16T10:15:00Z Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled Evidence Report issue View issues
Aliases: 68000 Assembly, 68k Assembly, M68k Assembly
Provenance: commit 5c20ccfea9 · authored 2026-03-16T23:48:18+01:00 · agent claude-code · model claude-sonnet-4-6

Sources mentioning this language

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

Related languages

M68k Assembly (1.00)6809 Assembly (0.58)6800 Assembly (0.56)68HC11 Assembly (0.48)CDC 6600 Assembly (0.28)

LLM-contributed programs

Hello World

Provenance: commit 5c20ccfea9 · authored 2026-03-16T23:48:18+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
code.asm · license: Public Domain · added: 2026-03-16T10:15:00Z
; Hello World in Motorola 68000 Assembly
; Assembled with EASy68K simulator

        ORG     $1000

START:
        MOVE.B  #14,D0          ; task 14 = display null-terminated string
        LEA     MSG,A1          ; A1 points to message
        TRAP    #15             ; call Easy68K OS trap

        MOVE.B  #9,D0           ; task 9 = halt program
        TRAP    #15

MSG:    DC.B    'Hello, World!',0

        END     START

Contribute — propose a file extension

Tell us where to find evidence about Motorola 68000 Assembly (mapped to pl/motorola_68000_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/Motorola 68000 Assembly/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← Motoko Motorola 68K Assembly →