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.
8 lines
259 B
Racket
8 lines
259 B
Racket
9 years ago
|
#lang br
|
||
|
|
||
|
(module reader br
|
||
9 years ago
|
(require br/reader-utils "hdl-tst/parser.rkt" "hdl-tst/tokenizer.rkt")
|
||
9 years ago
|
(define-read-and-read-syntax (source-path input-port)
|
||
9 years ago
|
#`(module hdl-mod br/demo/hdl-tst/expander
|
||
9 years ago
|
#,(parse source-path (tokenize input-port)))))
|