ISPS
1 program
Added 2026-03-13T10:00:00Z
Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled
Evidence
Report issue
View issues
Aliases: Instruction Set Processor Specification
Provenance: commit ffafa8b50a · authored 2026-03-13T05:48:33+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)
Related languages
LLM-contributed programs
PDP-8 Processor Description
Provenance: commit ffafa8b50a · authored 2026-03-13T05:48:33+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
PDP8 = PROC MAIN =
M(0..4095)<11:0>,
MA<11:0>,
MB<11:0>,
PC<11:0>,
AC<11:0>,
LK<0>,
IR<11:0>,
FETCH =
MA := PC,
MB := M(MA),
PC := PC + 1,
IR := MB,
EXECUTE =
DECODE IR<11:9> INTO [
0 => AC := AC AND M(IR<8:0>),
1 => {AC,LK} := {0,LK} + AC + M(IR<8:0>),
2 => M(IR<8:0>) := AC, AC := 0,
3 => PC := IR<8:0>
],
CYCLE = FETCH, EXECUTE