Tips1:
由于SpinalHDL是基于Scala构建的,Scala本身自带类似变量Boolean,故在此要认准SpinalHDL中采用的是Bool而非Boolean:
- Bool(大写的True和False):True表示1,False表示0
- Boolean(小写的true和false):true表示1,false表示0
Tips2:
SpinalHDL在声明时采用“=
”,而在改变电路状态时用“:=
”
1.1、描述
Bool类型对应于布尔值(True或False)。
1.2、声明
声明布尔值的语法如下:(方括号中的所有内容都是可选项)
val myBool_1 = Bool() // Create a Bool
myBool_1 := False // := is the assignment operator
val myBool_2 = False // Equivalent to the code above
val myBool_3 = Bool(5 > 12) // Use a Scala Boolean to create a Bool
1.3、运算符
以下运算符可用于布尔类型:
1.3.1、逻辑运算(logic)
val a, b, c = Bool()
val res = (!a & b) ^ c // ((NOT a) AND b) XOR c
val d = False
when(cond) {
d.set() // equivalent to d := True
}
val e = False
e.setWhen(cond) // equivalent to when(cond) { d := True }
val f = RegInit(False) fallWhen(ack) setWhen(req) //这个理解起来有点难度???
/** equivalent to
* when(f && ack) { f := False }
* when(req) { f := True }
* or
* f := req || (f && !ack)
*/
// mind the order of assignments!
val g = RegInit(False) setWhen(req) fallWhen(ack) //这个理解起来有点难度???
// equivalent to g := ((!g) && req) || (g && !ack)
1.3.2、边沿检测(Edge detection)
when(myBool_1.rise(False)) { //括号里面表示复位值为低
// do something when a rising edge is detected
}
val edgeBundle = myBool_2.edges(False)
when(edgeBundle.rise) {
// do something when a rising edge is detected
}
when(edgeBundle.fall) {
// do something when a falling edge is detected
}
when(edgeBundle.toggle) {
// do something at each edge
}
1.3.3、比较(Comparison)
when(myBool) { // Equivalent to when(myBool === True)
// do something when myBool is True
}
when(!myBool) { // Equivalent to when(myBool === False)
// do something when myBool is False
}
1.3.4、类型转换(Type cast)
// Add the carry to an SInt value
val carry = Bool()
val res = mySInt + carry.asSInt
1.3.5、杂项(Misc)
就是拼接符,等效Verilog中的
{}
val a, b, c = Bool()
// Concatenation of three Bool into a Bits
val myBits = a ## b ## c
1.3.6、MaskedBoolean
MaskedBoolean 允许使用不确定值。它们通常不单独使用,而是通过MaskedLiteral
来使用。文章来源:https://www.toymoban.com/news/detail-474110.html
MaskedLiteral
值是带有“-”的位向量,表示不关心的值。【下面的M
就表示MaskedLiteral】文章来源地址https://www.toymoban.com/news/detail-474110.html
val myBits = B"1101
val test1 = myBits === M"1-01" // True
val test2 = myBits === M"0---" // False
val test3 = myBits === M"1--1" // True
// first argument: boolean value
// second argument: do we care ?
val masked = new MaskedBoolean(true, false)
到了这里,关于【SpinalHDL快速入门】4.1、基本类型之Bool的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!