You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
beautiful-racket/beautiful-racket/br/demo/hdl/parser.rkt

17 lines
294 B
Racket

8 years ago
#lang ragg
chip-program : "CHIP" ID "{" pin-spec pin-spec part-spec "}"
8 years ago
pin-spec : ("IN" | "OUT") pin-list ";"
8 years ago
8 years ago
pin-list : ID another-id*
8 years ago
another-id : "," ID
8 years ago
8 years ago
part-spec : "PARTS:" part-list
part-list : part+
8 years ago
part : ID "(" ID "=" ID another-id-pair* ")" ";"
8 years ago
8 years ago
another-id-pair : "," ID "=" ID