Generate TGF01 and TGF02 cores

This commit is contained in:
2020-08-20 17:29:36 +02:00
parent 18976e2ce4
commit 8fce0c4759
7 changed files with 6030 additions and 0 deletions

24
gen_input/TGFS.core_desc Normal file
View File

@ -0,0 +1,24 @@
import "RV32I.core_desc"
import "RVM.core_desc"
import "RVC.core_desc"
Core TGF01 provides RV32I {
constants {
XLEN:=32;
PCLEN:=32;
// definitions for the architecture wrapper
// XL ZYXWVUTSRQPONMLKJIHGFEDCBA
MISA_VAL:=0b01000000000000000000000100000000;
}
}
Core TGF02 provides RV32I, RV32M, RV32IC {
constants {
XLEN:=32;
PCLEN:=32;
MUL_LEN:=64;
// definitions for the architecture wrapper
// XL ZYXWVUTSRQPONMLKJIHGFEDCBA
MISA_VAL:=0b01000000000000000001000100000100;
}
}