BASCOM
1 program
Added 2026-02-12T11:06:55Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: BASCOM-AVR, BASCOM-8051
Provenance: commit 5415d4d779 · authored 2026-02-12T12:07:33+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
LLM-contributed programs
LED Blink
Provenance: commit 5415d4d779 · authored 2026-02-12T12:07:33+01:00 · agent claude-code · model sonnet · WebSearch disabled
'LED Blink Program for ATmega328P
'Blinks an LED connected to PORTB.0
$regfile = "m328pdef.dat"
$crystal = 16000000
$hwstack = 40
$swstack = 16
$framesize = 32
Config Portb.0 = Output
Do
Portb.0 = 1
Waitms 500
Portb.0 = 0
Waitms 500
Loop
End