PIC Assembly

1 program Added 2026-02-11T09:18:10Z Agent: claude-code-recoveryModel: sonnetWebSearch: disabled Evidence Report issue View issues
Aliases: PIC ASM, MPASM
Provenance: commit dd22e1ca4e · authored 2026-02-11T13:26:33+01:00 · agent claude-code-recovery · model sonnet

Sources mentioning this language

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

Related languages

MPASM (0.64)PowerPC Assembly (0.47)SPARC Assembly (0.41)PDP-5 Assembly (0.39)PDP-7 Assembly (0.39)

LLM-contributed programs

LED Blinker for PIC16F84A

Provenance: commit dd22e1ca4e · authored 2026-02-11T13:26:33+01:00 · agent claude-code-recovery · model sonnet · WebSearch disabled
code.asm · added: 2026-02-11T09:18:10Z
    LIST    P=16F84A
    INCLUDE <P16F84A.INC>
    __CONFIG _CP_OFF & _WDT_OFF & _PWRTE_ON & _XT_OSC

    ORG     0x00
    GOTO    START

    ORG     0x04
    RETFIE

START
    BSF     STATUS, RP0
    CLRF    TRISB
    BCF     STATUS, RP0
    CLRF    PORTB

LOOP
    BSF     PORTB, 0
    CALL    DELAY
    BCF     PORTB, 0
    CALL    DELAY
    GOTO    LOOP

DELAY
    MOVLW   0xFF
    MOVWF   0x20
DELAY1
    MOVLW   0xFF
    MOVWF   0x21
DELAY2
    DECFSZ  0x21, F
    GOTO    DELAY2
    DECFSZ  0x20, F
    GOTO    DELAY1
    RETURN

    END

Contribute — propose a file extension

Tell us where to find evidence about PIC Assembly (mapped to pl/pic_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/PIC Assembly/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← PIC (markup language) Pic Micro Pascal →