blob: 1a04d6072b08975845df756d8527132ae1604fc7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
February 17, 2015.
Functions (defn) have (1) a static type signature and (2) an implementation
You can define them seperately
type signature -> defmulti
implementation -> defmethod
Thus, you can have multiple defmethods per defmulti.
However, you cannot have:
defmulti a(x:?) -> ?
defn a(x:Int) -> Int
because it is unclear which to call (2 matching static type signatures)
TODO Read initialization spec
TODO Read through make-explicit-reset
TODO If you feel up for it, rewrite make-explicit-reset
TODO If you feel up for it, read through initialize-registers
TODO
Make stanza a git repo
Write installation instructions for stanza
Need 2 different prints, one with IR-internal information, and another that matches correct FIRRTL
|