upgrades
This commit is contained in:
parent
ac8e05bf52
commit
a7112554e3
20
beautiful-racket/br/demo/hdl/DMux.hdl
Normal file
20
beautiful-racket/br/demo/hdl/DMux.hdl
Normal file
|
@ -0,0 +1,20 @@
|
|||
#lang br/demo/hdl
|
||||
|
||||
// This file is part of www.nand2tetris.org
|
||||
// and the book "The Elements of Computing Systems"
|
||||
// by Nisan and Schocken, MIT Press.
|
||||
// File name: projects/01/DMux.hdl
|
||||
|
||||
/**
|
||||
* Demultiplexor:
|
||||
* {a, b} = {in, 0} if sel == 0
|
||||
* {0, in} if sel == 1
|
||||
*/
|
||||
|
||||
CHIP DMux {
|
||||
IN in, sel;
|
||||
OUT a, b;
|
||||
|
||||
PARTS:
|
||||
Not
|
||||
}
|
30
beautiful-racket/br/demo/hdl/Dmux.tst.rkt
Normal file
30
beautiful-racket/br/demo/hdl/Dmux.tst.rkt
Normal file
|
@ -0,0 +1,30 @@
|
|||
#lang br/demo/hdl/tst
|
||||
|
||||
// This file is part of www.nand2tetris.org
|
||||
// and the book "The Elements of Computing Systems"
|
||||
// by Nisan and Schocken, MIT Press.
|
||||
// File name: projects/01/DMux.tst
|
||||
|
||||
load DMux.hdl,
|
||||
// output-file DMux.out,
|
||||
// compare-to DMux.cmp,
|
||||
// output-list in%B3.1.3 sel%B3.1.3 a%B3.1.3 b%B3.1.3;
|
||||
output-list in, sel, a, b;
|
||||
|
||||
set in 0,
|
||||
set sel 0,
|
||||
eval,
|
||||
output;
|
||||
|
||||
set sel 1,
|
||||
eval,
|
||||
output;
|
||||
|
||||
set in 1,
|
||||
set sel 0,
|
||||
eval,
|
||||
output;
|
||||
|
||||
set sel 1,
|
||||
eval,
|
||||
output;
|
23
beautiful-racket/br/demo/hdl/Mux.hdl
Normal file
23
beautiful-racket/br/demo/hdl/Mux.hdl
Normal file
|
@ -0,0 +1,23 @@
|
|||
#lang br/demo/hdl
|
||||
|
||||
// This file is part of www.nand2tetris.org
|
||||
// and the book "The Elements of Computing Systems"
|
||||
// by Nisan and Schocken, MIT Press.
|
||||
// File name: projects/01/Mux.hdl
|
||||
|
||||
/**
|
||||
* Multiplexor:
|
||||
* out = a if sel == 0
|
||||
* b otherwise
|
||||
*/
|
||||
|
||||
CHIP Mux {
|
||||
IN a, b, sel;
|
||||
OUT out;
|
||||
|
||||
PARTS:
|
||||
// Put your code here:
|
||||
Not(in=sel, out=sel-opposite);
|
||||
And(a=a, b=sel-opposite, out=maybe-a);
|
||||
Or(a=maybe-a, b=b, out=out);
|
||||
}
|
51
beautiful-racket/br/demo/hdl/Mux.tst.rkt
Normal file
51
beautiful-racket/br/demo/hdl/Mux.tst.rkt
Normal file
|
@ -0,0 +1,51 @@
|
|||
#lang br/demo/hdl/tst
|
||||
// This file is part of www.nand2tetris.org
|
||||
// and the book "The Elements of Computing Systems"
|
||||
// by Nisan and Schocken, MIT Press.
|
||||
// File name: projects/01/Mux.tst
|
||||
|
||||
load Mux.hdl,
|
||||
// output-file Mux.out,
|
||||
// compare-to Mux.cmp,
|
||||
// output-list a%B3.1.3 b%B3.1.3 sel%B3.1.3 out%B3.1.3;
|
||||
output-list a, b, sel, out;
|
||||
|
||||
set a 0,
|
||||
set b 0,
|
||||
set sel 0,
|
||||
eval,
|
||||
output;
|
||||
|
||||
set sel 1,
|
||||
eval,
|
||||
output;
|
||||
|
||||
set a 0,
|
||||
set b 1,
|
||||
set sel 0,
|
||||
eval,
|
||||
output;
|
||||
|
||||
set sel 1,
|
||||
eval,
|
||||
output;
|
||||
|
||||
set a 1,
|
||||
set b 0,
|
||||
set sel 0,
|
||||
eval,
|
||||
output;
|
||||
|
||||
set sel 1,
|
||||
eval,
|
||||
output;
|
||||
|
||||
set a 1,
|
||||
set b 1,
|
||||
set sel 0,
|
||||
eval,
|
||||
output;
|
||||
|
||||
set sel 1,
|
||||
eval,
|
||||
output;
|
3
beautiful-racket/br/demo/hdl/info.rkt
Normal file
3
beautiful-racket/br/demo/hdl/info.rkt
Normal file
|
@ -0,0 +1,3 @@
|
|||
#lang info
|
||||
|
||||
(define module-suffixes '(#"hdl" #"tst" #"cmp"))
|
|
@ -9,7 +9,9 @@
|
|||
(define get-token
|
||||
(lexer
|
||||
[(eof) eof]
|
||||
[(seq "/*" (complement (seq any-string "*/" any-string)) "*/")
|
||||
[(union
|
||||
(seq "/*" (complement (seq any-string "*/" any-string)) "*/")
|
||||
(seq "//" (repetition 1 +inf.0 (char-complement #\newline)) #\newline))
|
||||
(token 'COMMENT lexeme #:skip? #t)]
|
||||
[(union #\tab #\space #\newline) (get-token input-port)]
|
||||
[(union "CHIP" "IN" "OUT" "PARTS:") lexeme]
|
||||
|
|
|
@ -9,7 +9,9 @@
|
|||
(define get-token
|
||||
(lexer
|
||||
[(eof) eof]
|
||||
[(seq "/*" (complement (seq any-string "*/" any-string)) "*/")
|
||||
[(union
|
||||
(seq "/*" (complement (seq any-string "*/" any-string)) "*/")
|
||||
(seq "//" (repetition 1 +inf.0 (char-complement #\newline)) #\newline))
|
||||
(token 'COMMENT lexeme #:skip? #t)]
|
||||
[(union #\tab #\space #\newline) (get-token input-port)]
|
||||
[(union "load" "output-list" "set" "eval" "output" (char-set ",;")) lexeme]
|
||||
|
|
Loading…
Reference in New Issue
Block a user