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/Not2.hdl.rkt

15 lines
228 B
Racket

#lang br/demo/hdl
CHIP Not {
IN a, b, c, d;
OUT x, y, z;
PARTS:
Nand(a=a, b=a, out=x);
Nand(a=a, b=a, out=y);
Nand(a=a, b=a, out=z);
}