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)
LLM (this repo) · 1

Related languages

PSF (0.31)ABS (0.23)Instruction List (0.23)MASL (0.22)JFlex (0.21)

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
code.isps · added: 2026-03-13T10:00:00Z
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

Contribute — propose a file extension

Tell us where to find evidence about ISPS (mapped to pl/isps). 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/ISPS/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← ispl isq →