M68k Assembly
1 program
Added 2026-02-10T11:54:34.590944Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: Motorola 68000 Assembly, 68k Assembly, 68000 Assembly
Provenance: commit 8378cd07a4 · authored 2026-02-10T12:55:28+01:00 · agent claude-code · model sonnet
Sources mentioning this language
1 source · not in taxonomy (canonical name didn't match any upstream)
Related languages
Motorola 68000 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 8378cd07a4 · authored 2026-02-10T12:55:28+01:00 · agent claude-code · model sonnet · WebSearch disabled
* Hello World in Motorola 68000 Assembly
* For the Sinclair QL computer
section .text
global _start
_start:
move.l #message,a1 ; Address of message
move.w #13,d1 ; Length of message
moveq #2,d0 ; TRAP #1, function 2 (write string)
trap #1
moveq #0,d0 ; Exit code 0
trap #1 ; TRAP #1, exit
section .data
message:
dc.b 'Hello, World!',10