68HC11 Assembly

1 program Added 2026-03-13T12:00:00Z Agent: claude-codeModel: claude-sonnet-4-6WebSearch: enabled Evidence Report issue View issues
Aliases: MC68HC11 Assembly, Motorola 68HC11 Assembly
Provenance: commit c4031df373 · authored 2026-03-13T04:03:25+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

6809 Assembly (0.62)M68k Assembly (0.48)Motorola 68000 Assembly (0.48)6800 Assembly (0.44)PDP-11 Assembly (0.31)

LLM-contributed programs

Subroutine Example

Provenance: commit c4031df373 · authored 2026-03-13T04:03:25+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch enabled
code.asm · added: 2026-03-13T12:00:00Z
	ORG	$C000
	
* initialize stack to something so subroutines can be used (addresses are stored on stack automatically)
	LDS 	$D000 
	
* your main program here
	LDAA	#1 * Value of A register is now 1.
	JSR	ADD5TOA * Call the subroutine using JSR, jump to subroutine
	* Value of A register is now 6.  
	
DONE	BRA	DONE * end of program

* Subroutine definition:
* This subroutine adds 5 to the A register
ADD5TOA	* give it a label
	* do all your stuff in here
	ADDA	#5
	RTS	* return from subroutine, goes back to where you used JSR
	

Contribute — propose a file extension

Tell us where to find evidence about 68HC11 Assembly (mapped to pl/68hc11_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/68HC11 Assembly/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← 6809 Assembly 6969 Assembler →