blob: 801aca8c0464f4ba86e6d1a1f191606aaf9401a9 (
plain)
1
2
3
4
5
6
7
8
9
|
/* Define the XLEN value for the architecture. */
// type-level definitions
type xlen : Int = 64
type xlenbits = bits(xlen)
// value-level definitions
let xlen_val = 64
let xlen_val_bytes = 8 // byte-width of xlen bits
|