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.
15 lines
201 B
Racket
15 lines
201 B
Racket
9 years ago
|
#lang br/demo/hdl-tst
|
||
9 years ago
|
|
||
|
/* nand */
|
||
|
|
||
|
load Nand.hdl,
|
||
|
output-list a, b, out;
|
||
|
set a 0, set b 0,
|
||
|
eval, output;
|
||
|
set a 0, set b 1,
|
||
|
eval, output;
|
||
|
set a 1, set b 0,
|
||
|
eval, output;
|
||
|
set a 1, set b 1,
|
||
|
eval, output;
|